需求说明: 今天配置了一台redis服务器,想要也和其他的数据库一样配置用户名/密码的方式进行登录. 查找了一下,没看到配置用户名的地方,就是有认证密码,所以就做了测试,在此进行记录. 操作过程: 1.开启redis的密码认证,打开redis.conf,找到以下的内容 [aiprd@redhat6 redis-4.0.2]$ grep "requirepass" redis.conf # If the master is password protected (using the &q
make make PREFIX=/usr/local/redis install mkdir /etc/redis/ cp redis.conf /etc/redis/ 打开redis.conf文件修改daemonize yes即可在后台运行 vim /etc/redis/redis.conf 使用配置文件启动redis服务 ./redis-server /etc/redis/redis.conf 如何查看redis服务正常启动? 使用ps查看或netstat ps aux | grep re