• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.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