• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

Upgrade from 11.0.9 to 12.0.8 problem

Dragomir

New Pleskian
Hello all,

I cant upgrade my plesk version 11.0.9 to version 12.0.8
I got this problem:
"
ERROR while trying to execute SQL query, the query was: INSERT INTO ServiceInstallations (name, status, serviceNodeId) values ('PleskDns', 1, 1)"

Can somebody help me?

Thank you.
 
Try to create this table manually with following SQL query:

CREATE TABLE `ServiceInstallations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`status` int(10) unsigned NOT NULL DEFAULT '0',
`serviceNodeId` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`,`serviceNodeId`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
 
Back
Top