Category:

Change Plesk Root IP Address

mysql> select * from IP_Addresses
    -> ;
+----+--------------+---------------+-------+--------------------+-------------------+-------+
| id | ip_address   | mask          | iface | ssl_certificate_id | default_domain_id | ftps  |
+----+--------------+---------------+-------+--------------------+-------------------+-------+
|  1 | xxx.xx.xx.xx | 255.255.254.0 | eth0  |                  1 |                 0 | false |
|  2 | xxx.xx.xx.xx | 255.255.254.0 | eth0  |                  1 |                 0 | false |
+----+--------------+---------------+-------+--------------------+-------------------+-------+
2 rows in set (0.00 sec)

mysql> update IP_Addresses set ip_address = 'xxx.xx.xx.xx' where id = 2;
mysql> update IP_Addresses set ip_address = 'xxx.xx.xx.xx' where id = 1;
mysql> delete from IP_Addresses where id = 2;

Back [Plesk

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.