Skip to content
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

Web Interface not working #109

Closed
ronewxp opened this issue Apr 10, 2021 · 1 comment
Closed

Web Interface not working #109

ronewxp opened this issue Apr 10, 2021 · 1 comment
Labels

Comments

@ronewxp
Copy link

ronewxp commented Apr 10, 2021

ovpmd --web-port 9090
FATA[0000] could not listen to port 9090: listen tcp4 127.0.0.1:9090: bind: address already in use

@cad cad added the question label Apr 10, 2021
@cad
Copy link
Owner

cad commented Apr 10, 2021

By default OVPM listens on port 9090 for GRPC and 8080 for the REST API + WebUI. So when you override the --web-port to 9090 now it clashes with the GRPC port.

In order to solve this, best option would be giving another port number such as 9091.

Or if your really need to use 9090 for the WebUI then you can override both ports and you should specify the new GRPC port in ovpm command whenever you invoke. It would be something like this;

# Override both ports
$ ovpmd --web-port 9090 --port 8080

# But don't forget to add --daemon-port from now on when you need to use ovpm command.
$ ovpm --daemon-port 8080 user list

@cad cad closed this as completed Apr 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants