@julian I am not running any other active forums or DO droplets to move the demo site to. I have a DO account just for the demo site. I will delete the droplet once I install it for free some where else.
Installation on ubuntu
-
Hello community and nodebb's team.
Please help me with installation proces nodebb on UBUNTU (VPS Server). Probably it will be helpful not only for me.Thanks guys
-
can't run app ((
Ubuntu VPN , all is installed correctly, but always got this type of issueinfo: Initializing NodeBB v0.1.0, on port 4567, using Redis store at 127.0.0.1:6379.
info: NodeBB instance bound to: 12.22.19.24
error: -
Nothing after the error message?
Did you follow our guide on github?
https://github.com/designcreateplay/NodeBB#installation
Make sure you have the required software packages and redis(2.6) and node(0.10.x)
-
Nothing after (((
node -v
v0.10.22
npm -v
1.3.14
and fresh redis.i also wrote test.js as example for testing my server with port 4555
var http = require("http");http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Node test on Nginx!");
response.end();
}).listen(4555);All is good.
Right now i don't know what's wrong and where is mistake. (((((((((
-
What is the redis version?
It is weird that you don't get any error messages. It just says
error :
and the rest is empty? -
redis_version:2.5.0
yes, is empty ((
- attached screenpic
-
right now will try 2 repeat all part of installation process in the same environment and again on ubuntu
-
Now i got new issue back.
Error: Auth error: Error: ERR Client sent AUTH, but no password is set
at Command.callback (/var/www/main/data/www/domain.name/node_modules/redis/index.js:174:43)
at RedisClient.return_error (/var/www/main/data/www/domain.name/node_modules/redis/index.js:512:25)
at HiredisReplyParser.<anonymous> (/var/www/main/data/www/domain.name/node_modules/redis/index.js:263:14)
at HiredisReplyParser.EventEmitter.emit (events.js:95:17)
at HiredisReplyParser.execute (/var/www/main/data/www/domain.name/node_modules/redis/lib/parser/hiredis.js:41:18)
at RedisClient.on_data (/var/www/main/data/www/domain.name/node_modules/redis/index.js:488:27)
at Socket.<anonymous> (/var/www/main/data/www/domain.name/node_modules/redis/index.js:82:14)
at Socket.EventEmitter.emit (events.js:95:17)
at Socket.<anonymous> (_stream_readable.js:746:14)
at Socket.EventEmitter.emit (events.js:92:17) -
Is your redis server expecting a password? Double-check that it is correct.
-
i just checked. pass is null (((
-
YEHUP ! Installation is finished, but without stylesheet and with some issue on JS.
and without plugin........
It's normal or not ?
-
yes. all is okay.
One question after command node app.js in ssh app is started, but if i closed ssh command apps is also closed.
how it fixed that ?
-
You have to use something like
supervisor
orforever
to start the application, then it will keep running even if you close the shell.