Lissy93/web-check

docker install for oracel linux r8.8 Unable open 8888 for web why?

cddisk2000 opened this issue · 2 comments

System environment: Oracel Linux R8.8

Installation steps

  1. Download web check git hub

  2. Current directory execution => docker compose up -d
    image

  3. netstat -ltunp check port
    image

  4. docker ps check container
    image

  5. Use chrome and firefox browser Unable to open webpage
    http://ip:8888

Error Message

Unable to reach this site 192.168.2.12 rejected our connection request.
Please try the following:

check network connection
Check proxy servers and firewalls
ERR_CONNECTION_REFUSED

#==== Additional commands

#Open tcp 8888 firewall
sudo firewall-cmd --add-port=8888/tcp --permanent
sudo firewall-cmd --reload

#Close Selinux
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
setenforce 0

For me the service is listening on port 3000, I don't know why the documentation says 8888.
I have created a PR to fix this: #32

For me the service is listening on port 3000, I don't know why the documentation says 8888. I have created a PR to fix this: #32

Modify docker composite. yml

version: '3.9'
services:
web-check:
container_name: Web-Check
image: lissy93/web-check
ports:
- 8888:3000
restart: unless-stopped

Thank you for your help