redis下载之后 tar -zxf make 然后将src目录下的redis-benchmark redis-cli redis-server和根目录下的redis.conf拷贝到单独的文件夹下,然后运行redis-server redis.conf 但爆了个错,解决办法是在src目录下,运行sudo make install 然后在运行redis-server redis.conf即可。
redis的后台:在redis.conf下把daemonize设置为yes
redis需要默认是不接受远程连接的,在redis.conf下需要把bind localhost给注释掉才可以
redis在我的/home/redis下