• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

[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