zbejas / portarius

Portarius is a free, open-source, cross-platform mobile app that allows you to manage your Portainer sessions.
Other
213 stars 19 forks source link

Cannot sign in #42

Open CattopyTheWeb opened 1 year ago

CattopyTheWeb commented 1 year ago

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.

CattopyTheWeb commented 1 year ago

Also, I downloaded the app from F-droid

Geezus42 commented 1 year ago

I can't either, downloaded from Play store. Last release was 7mo ago, I wonder if it's dead?

Geezus42 commented 1 year ago

Found another.

https://github.com/zbejas/portarius/issues/39

zbejas commented 1 year ago

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.

CattopyTheWeb commented 1 year ago

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

CattopyTheWeb commented 1 year ago

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

CattopyTheWeb commented 1 year ago

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.

CattopyTheWeb commented 1 year ago

@zbejas Maybe you should make it so it ignores SSL cert errors and just connects

gooddavvy commented 1 year ago

Great solution!

bookamp commented 1 year ago

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

lead0r commented 1 year ago

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

KevinTrinh1227 commented 1 year ago

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!