ubuntu搭建ARL

0x01.安装docker

官方的源很慢,使用阿里的:

1.卸载原来的docker

sudo apt-get remove docker docker-engine docker-ce docker.io

2.安装依赖

sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common

3.添加docker的使用的公钥

curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

4.添加docker的远程库

add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

5.安装docker-ce

apt-get update
sudo apt-get install -y docker-ce docker-compose

6.启动docker

systemctl status docker

7.运行hello-world

sudo docker run hello-world

0x02.部署ARL

拉取镜像

docker pull tophant/arl

docker-compose 启动

git clone https://github.com/TophantTechnology/ARLcd ARL/docker/docker-compose up -d (如果报错按照报错提示)

详细说明可以参考: Docker 环境安装 ARL

登录页面,默认端口5003 (https), 默认用户名密码admin/arlpass

image-20210826195602243

0x03.修改配置

vim docker/config-docker.yaml# 修改fofa aip重启ARLdocker-compose restart

补充 : 新功能说明

原文地址:https://www.cnblogs.com/xcymn/p/15721405.html