You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not in dire need for this to work I had just wanted to test it. I figured I would share my issues encase its a broad one and can do further testing on different versions.
I am running AlmaLinux release 8.5 (Arctic Sphynx)
I followed the instructions to just copy and paste the curl script.
I am getting an already in use error when it tries to run through the script
`nubo-management is up-to-date
Creating nubo-frontend ...
Host is already in use by another container
Creating nubo-frontend ... error
ERROR: for nubo-frontend Cannot start service nubo-frontend: driver failed programming external connectivity on endpoint nubo-frontend (54e10670acebf1edf8414fb85ed3e9b5e45d692a3b4dd0ebe043a8cdb10c7ad6): Error starting userland proxy: listen tcp4 0.0.0.0:443: bind: address already in use
Creating nubo-ps ... done
Creating nubo-guac ... done
ERROR: for nubo-frontend Cannot start service nubo-frontend: driver failed programming external connectivity on endpoint nubo-frontend (54e10670acebf1edf8414fb85ed3e9b5e45d692a3b4dd0ebe043a8cdb10c7ad6): Error starting userland proxy: listen tcp4 0.0.0.0:443: bind: address already in use
Encountered errors while bringing up the project.
`
I also see a separate error a few lines up and am unsure if it is relevant.
`Configuring organization and user...
Starting all containers...
Error Error: Command failed: /usr/local/bin/docker-compose up -d
The MYSQL_PASSWORD variable is not set. Defaulting to a blank string.
`
The frontend service is trying to bind port 443 which is already occupied by another process in the host machine.
You can change the listen port by editing /opt/nubo/docker-compose.yml
Steps:
Run the bootstrap script again.
When you see the first prompt message Ready to begin? [Y] , before clicking enter, go to another terminal window.
Edit /opt/nubo/docker-compose.yml and change the following line: - "443:443" to map to another port in your host. e.g. for 8443 change it to - "8443:443" . Make sure to keep the indentation which is important in yml files. Save the file.
Continue the bootstrap script by click enter.
You may need also to change port 80. You can do that by changing the - "80:80" line.
I am not in dire need for this to work I had just wanted to test it. I figured I would share my issues encase its a broad one and can do further testing on different versions.
I am running AlmaLinux release 8.5 (Arctic Sphynx)
I followed the instructions to just copy and paste the curl script.
I am getting an already in use error when it tries to run through the script
I also see a separate error a few lines up and am unsure if it is relevant.
When I check
ss | grep 443
it showsNow that container may be irreverent because it doesn't look like anything is even using port 443.
The text was updated successfully, but these errors were encountered: