• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

[Fixed] Plesk 12.5.30 : Blank Login Page

hellbender

New Pleskian
Hi,

my plesk here does not show any login page, when I try to login via https://server:8443

Version: 12.5.30 ubuntu12.04.build1205150826.19
OS: Ubuntu 12.04.5 LTS (x86_64)

When I try to get some information e. g. with...

Code:
 /usr/local/psa/bin/admin --help

or...

Code:
 /usr/local/psa/bin/repair --help

these commands are stuck and do not produce any output, so I have to cancel them via Ctrl+C.

Full restart of Server did not help. Restart of services like this...

Code:
cd /etc/init.d
for s in nginx pc-remote psa sw-cp-server sw-engine;do ./$s stop;sleep 1;./$s start;done

... did not help either.

When I try to install the patches like this...

Code:
/usr/local/psa/admin/sbin/autoinstaller --select-release-current --reinstall-patch

The process is stuck after reading the APT-Package lists.

The logfiles within the tree /var/log/plesk do not show any relevant error.

I just got it working for me.

Solution - Use at your own risk (I'm just a user - no expert)

* Delete all (Cache-) files located under: /opt/psa/var/cache
Code:
rm /opt/var/cache/*
* Restart Services
Code:
cd /etc/init.d
for s in nginx pc-remote psa sw-cp-server sw-engine;do ./$s stop;sleep 1;./$s start;done
 
Back
Top