Plesk uses port 8443 and 8447 to access its dashboard and for updated respectively. I can access just fine with port 8443 but for the updates I can’t. Can port 8447 be opened or how can I open it?
Thanks
Plesk uses port 8443 and 8447 to access its dashboard and for updated respectively. I can access just fine with port 8443 but for the updates I can’t. Can port 8447 be opened or how can I open it?
Thanks
Only using Spectrum (might cost), or (DNS-only) that hostname (not what we want right?).
Otherwise, I’d sugest you to change that particular port 8447 to some other which is supported and compatible with Cloudflare proxy
I cant use any other port because Plesk will break since it uses port 8443 already to log in.
Can you point me to what to do using Spectrum?
You said that if I change the DNS entry with the domain name to DNS-Only instead of proxy it will work? Do I need to wait sometime to see the changes take over?
Thanks
You can easily change the admin port with onboard tools to :443
without any trouble. For the Update port, yes it seems to be hard-coded to 8447, but you can use internal redirects to direct a subdomain (e.g.: updates.server.tld
==> 127.0.0.1:8447
) internally to :8447
which would make it available through Cloudflare, as it now externally uses Port :443
.
You can differenciate through multiple things:
So multiple applications can use port 8443 if they hit the port with different referrer (so if they call it from different domains).
Same does Plesk, it serves multiple domains on :443
as it differenciates them by what domain someone calls port :443
through.
Beside that, go with what @fritex said.
And if you are good with CLI/Shell etc. you can easily use the CLI from Plesk to manage the whole server, to add extensions and modules and to update it.
Hey thanks for the solution.
You can easily change the admin port with onboard tools to
:443
without any trouble. For the Update port, yes it seems to be hard-coded to 8447, but you can use internal redirects to direct a subdomain (e.g.:updates.server.tld
==>127.0.0.1:8447
) internally to:8447
which would make it available through Cloudflare, as it now externally uses Port:443
.
Can you please explain how to do it on Plesk ?
Thanks
Just use a webserver (preferred nginx or even Nginx-Proxy-Manager) and serve 127.0.0.1:8447
under any domain you want - for example https://admin.domain.tld
. This is not a Plesk-Specific procedure, but actually a normal proxying rule.
I personally use NPM (Nginx-Proxy-Manager) as it is very easy to handle and dockerized.
Hope that helps.