[6.12.4] Cannot Access WebGui, but SSH Access is Successful


Go to solution Solved by ljm42,

Recommended Posts

Hello,

I'm experiencing an issue with my Unraid server. While I can successfully connect via SSH, I'm unable to access the WebGui. Here are some details that might assist in understanding and troubleshooting the issue:

 

Unraid Version: 6.12.4

Steps Already Tried:

  • Server reboot with safe mode
  • I validated the server config (/etc/nginx/conf.d/servers.conf) 
    [...]
    server {
        listen 192.168.1.145:8880 default_server; # br0
        #
        location ~ /wsproxy/8880/ { return 403; }
        include /etc/nginx/conf.d/locations.conf;
    }
  • By SSH, I deactivated the Docker containers. When they were Activated, I was able to see that they were working well, but the login screen of Unraid was still unreachable. 
  • I found out that NGINX isn't working and whenever I try "/etc/rc.d/rc.nginx reload" or  "/etc/rc.d/rc.nginx restart", the status always shows: "NGINX IS NOT RUNNING"
  • I also made sure, the GO file is the one from the 6.12.4 version, untouched.

 

Would anyone have insights into what might be causing this issue or how I might resolve it? I'm ready to provide any additional information if needed.

 

Thank you very much for your assistance.

Link to comment
3 hours ago, mercury3000 said:

I found out that NGINX isn't working and whenever I try "/etc/rc.d/rc.nginx reload" or  "/etc/rc.d/rc.nginx restart", the status always shows: "NGINX IS NOT RUNNING"

 

Using SSH or a keyboard/monitor plugged directly into the server, please type these two commands to be sure nginx is fully stopped:

/etc/rc.d/rc.nginx stop
ps -ef | grep "nginx" | grep -v "grep"

If that second command returns anything at all type these two commands:

/etc/rc.d/rc.nginx term
ps -ef | grep "nginx" | grep -v "grep"

Now that second command should not return anything.

 

Then type:

/etc/rc.d/rc.nginx start

and copy/paste everything back here so I can see what happened.
 

Then try accessing the webgui via this url;

  http://192.168.1.145:8880

If it fails, what error message do you get?

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.