This site is hosted and sponsored by hyve.com specialists in Cloud Hosting UK and VMware Hosting. If you are interested in our services please call us for chat on 0800 612 2524
You will need to RDP to the relevant server.
Login to the Plesk mySQL instance which defaults on port 8306. This will usually be the same as the Plesk admin login account.
Then use the following commands.
To view IPs with or without access:
Cannot login to Plesk due to admin IP access restriction.#
Error: Access for administrator from address xx.xx.xx.xx is restricted in accordance with IP Access restriction policy currently applied.#
You will need to RDP to the relevant server.
Login to the Plesk mySQL instance which defaults on port 8306. This will usually be the same as the Plesk admin login account.
Then use the following commands.
To view IPs with or without access:
use psa; select * from cp_access;
To view access policy:
use psa; select * from misc where param='access_policy';
To clear access policy and set access to allow:
use psa; delete from cp_access; update misc set val="allow" where param='access_policy';
Obviously you can delete individual lines from the table, in this example I have deleted line 3 which was an IP that was denied access:
use psa; delete from cp_access where id=3;
To modify a row from deny to allow you can run the following command. This example changed a blocked IP to an allowed IP:
use psa; update cp_access set type='allow' where id=4Back to Windows Plesk
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-5) was last changed on 22-Feb-2012 13:47 by Hyve Support