• 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/

ip pool id is not defined.

C

crash0verride

Guest
Hey,

When adding domains via the command line I get the following error:

An error occured during domain creation: unable to check ip address existing in ip pool: ip pool id is not defined.

This is the script I am using. Its licensed under the BSD license so by all means anyone who wants to can use it(Once it starts to work).

Code:
 #!/bin/sh
awk -F , '{print "/usr/local/psa/bin/client -c "$2" -name "$2"  -passwd "$3" && /usr/local/psa/bin/domain.sh --create "$1" -clogin "$2" -dom_user false -www true -hosting true
 -ip 192.168.2.2 -cgi true -notify false -login "$2" -passwd "$3}' list.csv | sh

The list.csv file is:

domain.net, domain-user, domain-pass

Has anyone run into this problem before? The IP is set as shared in the Control panel.

I have replaced the real IP with 192.168.2.2, for security reasons.
 
Hi,

You must attrib an IP pool to your customers before, see API.

Regards
 
For anyone with this problem, you need to add the following switch to the domain.sh command.

-map_ip xx.xx.xx.xx

where the x's are the IP your apache server is listening on.
 
Back
Top