Installation on ubuntu

General Discussion
  • 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 (( screen6.jpg

    • 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 or forever to start the application, then it will keep running even if you close the shell.


Suggested Topics