-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Curl error upon creating server #66
Comments
For me the issue was that the |
This seems more like a cURL/PHP/Host configuration issue more so than something the panel should be dealing with. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When creating a server I get this error:
An error occured while attempting to create the server: cURL error 7: Failed to connect to node.example.com port 5800: Connection refused (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
The reason for this is that curl is allowed to use ipv6 which ends in no connection to the daemon which is listening on ipv4. Please make sure to force ipv4 in all curl requests that the panel sends.
Testing from cmd on the same server :
Using
curl node.example.com:5800
instead:Using
curl -4 node.example.com:5800
instead:The text was updated successfully, but these errors were encountered: