07:48:25 GMT Guys, I am running redis in production , standalone mode , and its getting too many requests nearly 2-3k requests , should I be worry about crash or something ? 07:49:26 GMT 2-3k request/second. , Have anybody heard redis crash kind of issue ? I am okey if it slows down but should not crash. 08:36:54 GMT 2-3k r/s. I wonder if his Redis even notices... 08:37:03 GMT webley: 6379 is the default port number for Redis 08:37:21 GMT the ubuntu package probably has service scripts that will take that as the config 08:37:41 GMT there's no default location for configuration files, so you always have to pass it, but the service script should take care of that 08:37:53 GMT it's probably something like: systemctl start redis-server@6379 09:17:30 GMT when htting on api its saying connection refused for redis db 09:18:04 GMT ConnectionError: Error 111 connecting to 192.168.56.8:6379. Connection refused. 09:23:39 GMT then start it ;) 09:23:47 GMT check if you actually configured to listen on that ip 09:24:02 GMT by default it will listen on 127.0.0.1 aka localhost only 09:24:52 GMT badboy_: ty for reply but i have bind it to my static vm 09:25:12 GMT so that i could listen it to another vm in which django instanc eis running 09:35:46 GMT valhala_22: netstat -plnt 09:40:22 GMT https://paste.pound-python.org/show/r6O56XzZurb0hHpp3SNC/ 09:40:56 GMT kleszcz: i did , it shows redis server is runnign 09:45:19 GMT redis-cli -h 192.168.56.8 -p 6389 ping 09:45:28 GMT *6379 09:46:51 GMT Could not connect to Redis at 192.168.56.8:6389: Connection refused 09:47:05 GMT wrongport 09:47:10 GMT 6379 09:47:13 GMT ;) 09:48:06 GMT dbase@ubuntu:~$ redis-cli -h 192.168.56.8 -p 6379 ping 09:48:06 GMT (error) NOAUTH Authentication required. 09:48:16 GMT it is this 09:50:45 GMT requirepass in settings 09:51:04 GMT authentication with the AUTH 09:51:19 GMT redis-cli -h 192.168.56.8 -a babayaga 09:51:24 GMT no error 10:08:15 GMT lcally my redis is working 10:10:04 GMT locally 10:25:01 GMT kleszcz: isudo service redis_6379 stop when using it says connecton refused , i think this will resolve this problem 10:54:07 GMT valhala_22: ok 10:55:12 GMT now this ai ma geting kleszcz 10:55:15 GMT https://paste.pound-python.org/show/qlR0zWIUqqB1rz9dmFyF/ 13:59:55 GMT hot to uninstall redis 14:00:22 GMT i am resintalling redis db 14:00:42 GMT uninstalling redis. so hot right now 14:00:48 GMT but when i am using sudo apt-get purge redislabs or redis-server it says 14:01:02 GMT no redis-server package found 14:02:27 GMT does it appear when you do dpkg -l|grep redis? 14:42:27 GMT michel_v: i installed it using digital ocean link 15:01:38 GMT valhala__: then your best bet is to contact digitalocean's support team 15:02:40 GMT michel_v: lol this does seem to be solution for dev guy .i hate talking to support guys 15:04:07 GMT well if it's been installed using their installer, they know how to uninstall it best 15:04:26 GMT hmm i am working on it 15:04:42 GMT i am taking hard mode going to delete the server 23:43:47 GMT how to install redis on ubuntu