Unable to run on specific port
Unsolved
Technical Support
-
After upgrading to 1.5.x version from 1.4.x, nodebb could only run on 0.0.0.0:8080 instead of port 4567 set in the config.json. I am pretty sure that there's no process listening on port 4567.
Here's the my config.json
{ "url": " mystieurl", "port":"4567", "secret": "secret number", "database": "mongo", "mongo": { "host": "127.0.0.1", "port": "27017", "username": "usr", "password": "pass", "database": "db" } }
-
@kinchtwck You should specify
http://
orhttps://
in theurl
property.pretty sure there's no process
Well, you can use
lsof -i tcp:4567
to check for sure
Copyright © 2024 NodeBB | Contributors