docker-ebot
docker-ebot copied to clipboard
ERR_CONNECTION_REFUSED
So I'm trying to setup ebot with docker the first time, installed docker changed the docker-composer.yml and started it.
Had to change the MySQL port from 3306 to 3406, because my server already have a database. EBOT and EXTERNAL_IP with the public ip address and 127.0.0.1.
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
d388b395a8ca hsfactory/ebotweb "/sbin/entrypoint.sh" 10 minutes ago Up 3 minutes 0.0.0.0:80->80/tcp ebot_ebotweb_1
e6a033a2e799 hsfactory/ebot "/sbin/entrypoint.sh" 10 minutes ago Up 10 minutes 0.0.0.0:12360-12361->12360-12361/tcp, 0.0.0.0:12360-12361->12360-12361/udp ebot_ebot_1
71d6222ef3a4 mysql:5.7 "docker-entrypoint.s…" 10 minutes ago Up 10 minutes 3306/tcp, 33060/tcp, 0.0.0.0:3406->3406/tcp ebot_mysql_1
netstat -lapute | grep docker
tcp6 0 0 [::]:12360 [::]:* LISTEN root 2106621286 7216/docker-proxy
tcp6 0 0 [::]:12361 [::]:* LISTEN root 2106615522 7191/docker-proxy
tcp6 0 0 [::]:3406 [::]:* LISTEN root 2106616423 7015/docker-proxy
tcp6 0 0 [::]:http [::]:* LISTEN root 2106621319 7254/docker-proxy
udp6 0 0 [::]:12360 [::]:* root 2106619220 7229/docker-proxy
udp6 0 0 [::]:12361 [::]:* root 2106620332 7204/docker-proxy
I also tried to search logs, but only get a respond from the mysql container.
docker logs ebot_ebotweb_1 or docker logs d388b395a8ca
docker logs ebot_ebot_1 or docker logs e6a033a2e799
I searched also in the /opt/docker/ebot/logs directory = empty
If I try to go on the website http://$hostname/admin.php I just get a ERR_CONNECTION_REFUSED
any ideas?