Ramblings from MostlyChris

Tech stuff and a bit more

Browsing Posts tagged migration

There are times when you may need to migrate many IP addresses in Plesk. You could either do this by hand, one domain at a time or you can modify the database by hand which will save countless years of your life. I will assume you have logged into mysql and have selected the psa [...]

When having to migrate hugh numbers of IP addresses on Plesk, here is a way to manipulate the database to do it without having to use the panel to do them one at a time. mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa mysql> SELECT * FROM IP_Addresses; mysql> UPDATE Repository SET component_id = [new ip id] WHERE [...]