04:24:51 GMT hello 11:49:25 GMT Hey guys, got a problem to run the service with redis on debian. 11:51:00 GMT Process: 2048 ExecStart=/usr/bin/redis-server /etc/redis/redis.conf (code=exited, status=1/FAILURE) 11:51:57 GMT when I start with sudo -su redis redis-server /etc/redis/redis.conf everthing working fine, but i can´t do /etc/init.d/redis start or sudo service redis-server start 12:14:19 GMT got it, one question: the standard connection of redis-cli is on port. How to change the standard connection on socket? 12:14:49 GMT dont want to put everytime redis-cli -s /tmp/.sock when redis-cli should be enough :D 12:20:52 GMT so when i type redis-cli its connect on port 12:21:08 GMT redis-cli 12:21:08 GMT Could not connect to Redis at 127.0.0.1:6379: Connection refused 12:21:08 GMT Could not connect to Redis at 127.0.0.1:6379: Connection refused 12:21:08 GMT not connected> 12:21:19 GMT how to change it to socket? 12:23:18 GMT i have to write all the time -s /var/run/redis/redis.sock 12:23:25 GMT see: redis-cli -s /var/run/redis/redis.sock 12:23:25 GMT redis /var/run/redis/redis.sock> ping 12:23:25 GMT PONG 12:23:25 GMT redis /var/run/redis/redis.sock> ping hi 12:23:25 GMT "hi" 13:28:36 GMT xXSTrikeXx: Yes, 127.0.0.1:6379 is the default and redis-cli has no configuration to change that default 13:28:43 GMT you can use a shell alias or wrapper script instead 15:09:03 GMT badboy_: how to change the stop command that in /etc/init.d/redis-server the redis-cli send the right shutdown command? 15:09:17 GMT because it is don´t working since I set it to unix 15:09:20 GMT socket 15:10:44 GMT With systemd service the process will be killed: 15:10:45 GMT ExecStop=/bin/kill -s TERM $MAINPID 15:10:45 GMT ExecStopPost=-/bin/run-parts --verbose /etc/redis/redis-server.post-down.d 15:11:06 GMT i think it´s better to force the server to shutdown through the client, isn´t it? 15:17:49 GMT year i got it ;)