Solution to the error timeout of 12000ms exceeded when installing Lighthouse (ARL)


Some ways to solve the problem

When installing the lighthouse (ARL) in Kali, the timeout of 12000ms exceeded has been unable to be solved. After adding RISKIQ configuration,
After adding RISKIQ the problem still exists
the problem still cannot be solved. After considering factors such as Selinux and firewall, it was found that there was no impact. Finally, after a lot of research, the problem was finally solved. question


1. Install docker and use docker to install ARL through git.

There are many articles on this step, so I won’t describe it here.

2. Solution

After installing ARL, timeout of 12000ms exceeded appears.
Insert image description here

1. Enter the /ARL/docker directory

Enter directory

2. First shut down the service docker-compose down

Insert image description here

3. Then modify the configuration vim docker-compose.yml

Insert image description here

4. Comment out 443 here and use 80 for access

Insert image description here

5. Restart docker: /bin/systemctl restart docker.service

Insert image description here

6. Turn on the lighthouse docker-compose up -d

Insert image description here

7. Visit the lighthouse http://ip: (port)

The port depends on what you set. Many methods on the Internet have different settings. At
this time, the login page of the lighthouse will appear . When the error was reported before, the login page was not displayed. Enter the default account password admin/arlpass to log in, and the problem is solved.


Summarize

If you have other methods, please send me a private message. This is just a method to solve the timeout problem on my Kali, and may not be applicable to everyone.
Please do not steal without authorization. Please specify when reposting.

Guess you like

Origin blog.csdn.net/qq_51690690/article/details/131793890