Plex-server cannot find itself?

I have installed Plex server on a headless Ubuntu 16 server as follows:

dpkg -i plexmediaserver_1.13.2.5154-fd05be322_amd64.deb 
systemctl enable plexmediaserver.service
systemctl start plexmediaserver.service

I went to the address of the server: http://192.168.1.16:32400/web/index.html and the result I get is “A server could not be found. Download and install Plex Media Server, and it will appear here.”

Since I;m logging into the server, how come it can’t find itself?
I have tried rebooting, I have tried reinstalling, I am not sure what else to try…

To setup the server on the machine, unless it’s on a different network (subnet), always use the loopback address.

http://127.0.0.1:32400/web

1 Like

it’s a headless server, I cannot access the mediaserver on the server itself.

Is there a way to configure it manually without the web interface?

Yes, SSH tunnel to it:

  1. ssh -L 8888:127.0.0.1:32400 ip.addr.of.machine
  2. Sign in the ssh session and let it sit idle. You will be using the port forwarded connection
  3. In your local browser, open http://127.0.0.1:8888/web

Port 8888 will be forwarded to port 32400 on the other end of the SSH connection.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.