• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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