No login page afte ...
 
Notifications
Clear all

No login page afte installation

3 Posts
1 Users
2 Likes
451 Views
(@nitram)
Joined: 2 years ago
Posts: 32
Topic starter  

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.


   
Quote
(@nitram)
Joined: 2 years ago
Posts: 32
Topic starter  

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

   
ReplyQuote
(@nitram)
Joined: 2 years ago
Posts: 32
Topic starter  

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

   
ReplyQuote