-
Notifications
You must be signed in to change notification settings - Fork 54
Steps to Debug if the Application is Not Running
engageub edited this page Apr 1, 2025
·
1 revision
To effectively debug issues, enabling container logs is essential. Please follow the steps below:
-
Open
properties.conf
file and then setENABLE_LOGS
totrue
. -
Start the InternetIncome Script.
-
Container names can be found in the
containernames.txt
file, or you can retrieve them directly from the terminal. -
Obtain the container name and view the logs by running the following command. Replace <CONTAINER_NAME> with the name of the container you wish to debug:
sudo docker container logs <CONTAINER_NAME>
-
Some applications may require UDP connections. In such cases, you will need to examine the tun2socks container logs. Replace <TUN_CONTAINER_NAME> with the name of the proxy or tun2socks container, and look for any errors related to connectivity issues:
sudo docker container logs <TUN_CONTAINER_NAME>