Urgent help regrading nodebb running
-
@PitaJ I am trying everything , nothing is working , I follow your documentation till end , everything but not not able to run nodebb .
My config.json file is :{
"url": "http://sample.com",
"secret": "sampel secret",
"database": "mongo",
"port": 4567,
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "sample",
"password": "samplepwd",
"database": "nodebb"
},
"type": "literal",
"socket.io": {
"origins": ":"
}
} -
@abhinov-singh With a normal configuration, NodeBB needs MongoDB running. You can check it with:
service mongod status
Also, you can try from your nodebb folder:
./nodebb status ./nodebb restart
See also your nodebb/logs/output.log file, or just the recent lines with:
./nodebb log
(Ctrl-C to exit)
Copyright © 2024 NodeBB | Contributors