Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes
After I ran the Headwind Remote installer, it completes successfully and writes me the URL and secret of my server.

However when I'm trying to open the URL of Headwind Remote, I'm getting the "Connection Refused" message.
by (36.8k points)

1 Answer

0 votes

1. Review the installation log for error messages. Some errors which are not considered by the installer as fatal, are indeed fatal. For example, nginx will not start if there's a LetsEncrypt (certbot) error while generating a HTTPS certificate.

2. Sometimes the installer mistakenly generates a directory instead of a config file (a known issue of the Ansible v1).

Please check that by running the command:

    ls -l deploy/dist/conf/nginx

If you see that one or more files in that directory are indeed directories, remove them by using the command

    rm -rf deploy/dist/conf/nginx/wrong-directory

Then remove Docker images by the command

    docker-compose down

and restart the script by using the command

    bash ./install.sh

by (36.8k points)
...