Friday, January 20, 2017

How to run Redis server as daemon

 
 Want to run redis-server in background nonstop use below command
 
 
"redis-server --daemonize yes " 
 
Check if the process started or not:

ps aux | grep redis-server

 

No comments:

How to solve mysql ERROR 1118 (42000) Row size too large

  I had this issue with MYSQL 5.7 . The following worked althoug...