不多说,直接上干货!
再删除redis-64.3.0.503.zip
[] Mar ::48.115 # Warning: no config file specified, using the default config. In order to specify a config file use D:\SoftWare\Redis-3.0\redis-server.exe /path/to/redis.conf
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 3.0. (/) bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port:
| `-._ `._ / _.-' | PID: 94000
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-' [] Mar ::48.120 # Server started, Redis version 3.0.
[] Mar ::48.120 * The server is now ready to accept connections on port
127.0.0.1:>
127.0.0.1:> keys *
(empty list or set)
127.0.0.1:>
默认安装Redis的密码是为空的。
因为我们的操作系统大部分还是使用的windows,所以在开发的时候,基本上是用windows下的redis。通过启动redis-server.exe来启动。
redis默认是空密码,但是这样在项目上线后是不安全的,容易被入侵,所以要设置密码。
1、打开redis.windows.conf文件,找到# requirepass foobared 这行,在此行下增加一行requirepass 所设置的密码 ,保存。
· 这个密码123456随大家自定义,我这里设置如下
# requirepass foobared
requirepass //此处注意,行前不能有空格
2、打开cmd(windows命令窗口),切换到redis-server.exe目录下。
3、输入命令:redis-server.exe redis.windows.conf启动redis,即可使用密码了。
Microsoft Windows [版本 10.0.16299.125]
(c) Microsoft Corporation。保留所有权利。 C:\Users\lenovo>cd /d D: D:\>cd D:\SoftWare\Redis-3.0 D:\SoftWare\Redis-3.0>redis-server.exe redis.windows.conf
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 3.0. (/) bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port:
| `-._ `._ / _.-' | PID: 57812
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-' [] Mar ::43.330 # Server started, Redis version 3.0.
[] Mar ::43.333 * The server is now ready to accept connections on port
注意,如果不是用命令窗口,而是直接点击redis-server.exe启动redis,密码不会生效,因为此文件默认加载的是内置的配置文件,必须指定我们设置好的配置文件,密码才会生效。
连接redis报此错误:ERR Client sent AUTH, but no password is set
127.0.0.1:> keys *
(empty list or set)
127.0.0.1:> auth
(error) ERR Client sent AUTH, but no password is set
127.0.0.1:> CONFIG SET requirepass ""
OK
127.0.0.1:> auth
OK
127.0.0.1:>
C:\Users\lenovo>cd /d D: D:\>cd D:\SoftWare\Redis-3.0 D:\SoftWare\Redis-3.0>redis-server --service-install redis.windows.conf --loglevel verbose
[] Mar ::16.850 # Granting read/write access to 'NT AUTHORITY\NetworkService' on: "D:\SoftWare\Redis-3.0" "D:\SoftWare\Redis-3.0\"
[] Mar ::16.850 # Redis successfully installed as a service. D:\SoftWare\Redis-3.0>
或者,打开cmd窗口输入services.msc,Redis出现在服务中,自行启动该服务。
C:\Users\lenovo>cd /d D: D:\>cd D:\SoftWare\Redis-3.0 D:\SoftWare\Redis-3.0> redis-server --service-uninstall
同时,大家可以关注我的个人博客:
http://www.cnblogs.com/zlslch/ 和 http://www.cnblogs.com/lchzls/ http://www.cnblogs.com/sunnyDream/
详情请见:http://www.cnblogs.com/zlslch/p/7473861.html
人生苦短,我愿分享。本公众号将秉持活到老学到老学习无休止的交流分享开源精神,汇聚于互联网和个人学习工作的精华干货知识,一切来于互联网,反馈回互联网。
目前研究领域:大数据、机器学习、深度学习、人工智能、数据挖掘、数据分析。 语言涉及:Java、Scala、Python、Shell、Linux等 。同时还涉及平常所使用的手机、电脑和互联网上的使用技巧、问题和实用软件。 只要你一直关注和呆在群里,每天必须有收获
对应本平台的讨论和答疑QQ群:大数据和人工智能躺过的坑(总群)(161156071)