Open CattopyTheWeb opened 1 year ago
Also, I downloaded the app from F-droid
I can't either, downloaded from Play store. Last release was 7mo ago, I wonder if it's dead?
Found another.
So when I enter my servers' private ip and port and all that stuff, I just get stuck loading. I enter the server ip in this format https://{private server ip}:{port}. The server doesn't have an SSL certificate, so maybe that's the issue? Any help is appreciated.
Try http://{server}:{port}
if you're not using SSL.
I can't either, downloaded from Play store. Last release was 7mo ago, I wonder if it's dead?
I don't think it's dead
So when I enter my servers' private ip and port and all that stuff, I just get stuck loading. I enter the server ip in this format https://{private server ip}:{port}. The server doesn't have an SSL certificate, so maybe that's the issue? Any help is appreciated.
Try
http://{server}:{port}
if you're not using SSL.
I did try that, but it just spat out an error. Authentication failed
I solved this by getting an SSL cert with nginx proxy manager and duckDNS. Tho, I will keep this post open so we can figure out why it does that.
@zbejas Maybe you should make it so it ignores SSL cert errors and just connects
Great solution!
For anyone still having this this issue, I fixed it by enabling http on the legacy 9000 port.
docker run -d -p 8000:8000 -p 9443:9443 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ee:latest --http-enabled
For anyone still having this this issue, I fixed it by enabling http on the legacy 9000 port.
docker run -d -p 8000:8000 -p 9443:9443 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ee:latest --http-enabled
Thank you so much, that worked for me. I just used a different external port (9444:9000) and had to add --http-enabled
For anyone still having this this issue, I fixed it by enabling http on the legacy 9000 port.
docker run -d -p 8000:8000 -p 9443:9443 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ee:latest --http-enabled
Thank you very much!
So when I enter my servers' private ip and port and all that stuff, I just get stuck loading. I enter the server ip in this format https://{private server ip}:{port}. The server doesn't have an SSL certificate, so maybe that's the issue? Any help is appreciated.