• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Contribution [HowTo] One-step SQL query to fix IP address assignment issues

Bernard T

New Pleskian
Hi everyone,

mods: if this is wrong section for this post, please move it.

After a big migration from two older Plesk servers to a new Plesk 12 server I had to fix IP address assignment problems found by Plesk Webserver Configuration Troubleshooter in our server configs.
Since there is a manual 2-steps process described in KB http://kb.odin.com/en/113475, I made a new SQL query which will do everything in one step.

I thought someone else would be interested for it, so I decided to share it:
Code:
UPDATE IpAddressesCollections
    LEFT JOIN DomainServices ON IpAddressesCollections.ipCollectionId = DomainServices.ipCollectionId
    LEFT JOIN domains ON DomainServices.dom_id = domains.id
    LEFT JOIN dom_param ON dom_param.dom_id = domains.id
SET ipAddressId = cast(dom_param.val as char)
WHERE IpAddressesCollections.ipAddressId = 0
    AND dom_param.param LIKE 'ip%_addr_id'

I hope it will be useful to someone else, maybe you can update it to the subject KB.
 
Back
Top