@kenygamer Do not copy and paste, replace username and passwordd information.
Terminal
$ mongo
use nodebb
db.createUser( { user: "username", pwd: "<Enter in a secure mongo db password>", roles: [ "readWrite" ] } )
Edit ->config.json
{
"url": "http://community.kenygamer.com",
"port": "4567",
"use_port": false,
"secret": "mongo password",
"database": "mongo",
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "username",
"password": "mongo db password",
"database": "nodebb"
},
"bcrypt_rounds": 12,
"upload_path": "/public/uploads",
"relative_path": ""
}