Notifications
Clear all
Topic starter 11/01/2022 10:53 pm
After a successful installation of the soltuion, i am not able to get anything when i visit the url for the domains
i am not sure what might be the issue causing this to happen.
both visiting the domain url or even the ip address has nothing pesenting.
Topic starter 14/01/2022 11:46 am
WHat webserver is being used, and where can one troubleshoot webserver issues. i seem to be getting this error
ubuntu@mail:~$ curl http://127.0.0.1 -v * Rebuilt URL to: http://127.0.0.1/ * Trying 127.0.0.1... * TCP_NODELAY set * connect to 127.0.0.1 port 80 failed: Connection refused * Failed to connect to 127.0.0.1 port 80: Connection refused * Closing connection 0 curl: (7) Failed to connect to 127.0.0.1 port 80: Connection refused
Topic starter 14/01/2022 11:58 am
It seems the problem might have been originating from oracle cloud system.
this link here helped https://stackoverflow.com/questions/54794217/opening-port-80-on-oracle-cloud-infrastructure-compute-node
maybe someone else facing similar challenges can be assisted
disable iptables
by allowing all traffic through:
$ iptables -P INPUT ACCEPT
$ iptables -P OUTPUT ACCEPT
$ iptables -P FORWARD ACCEPT
$ iptables -F
To clear all iptables rules at once, run this command:
$ iptables --flush
Arman Khosravi liked