Looks like your connection to NodeBB was lost, please wait while we try to reconnect. on 1.4.4
-
Just did a fresh installation ob ubuntu16 server. Keep getting "Looks like your connection to NodeBB was lost, please wait while we try to reconnect."
-
@Simon-Even said in Looks like your connection to NodeBB was lost, please wait while we try to reconnect. on 1.4.4:
Just did a fresh installation ob ubuntu16 server. Keep getting "Looks like your connection to NodeBB was lost, please wait while we try to reconnect."
Changing the url solved it. Thanks.
-
Fixed a problem for me on a new test server too. Thanks @baris !
-
Hello,
I'm having the exact same problem here. I've tried changing localhost for my IP address on config.json and I'm still having the same error.here's my config.json file:
{
"url": "http://my.ip.adress:4567",
"secret": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",
"database": "mongo",
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "nodebb",
"password": "nodebb",
"database": "nodebb"
}
}Do you guys have any idea on what is happening?
-
The ip in the browser is not equal to the IP in the config.json
-
@vfssantos
These settings worked for me.{
"url": "http://192.168.1.1:4567",
"secret": "XXXXXXXXXXXX",
"database": "mongo",
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "nodebb",
"password": "mypassword",
"database": "nodebb",
"uri": ""
},
"port": "4567"
}From the Commandline Terminal, first stop and then start nodebb
./nodebb stop
./nodebb start