Loading

阿里云安装Redis

端口开放问题

阿里端口开放

image-20210508101939629

Redis安装:

2.1、准备编译器

[root@ccl ~]# yum -y install gcc gcc-c++

2.2、下载并安装

[root@ccl ~]# wget http://download.redis.io/releases/redis-5.0.9.tar.gz
[root@ccl ~]# tar -zxvf redis-5.0.9.tar.gz
[root@ccl ~]# cd redis-5.0.9
[root@ccl redis-5.0.9]# make
[root@ccl redis-5.0.9]# make PREFIX=/usr/local/redis install
[root@ccl redis-5.0.9]# cp redis.conf /usr/local/redis

2.3、启动服务器

[root@ccl redis-5.0.9]# cd /usr/local/redis
[root@ccl redis]# vim redis.conf
#找到这个修改为yes,表示Redis启动的时候采用后台模式
daemonize yes
#解注释,并在后面带上的密码
requirepass [输入密码]
[root@ccl redis]# ./bin/redis-server redis.conf

2.4、启动客户端

[root@ccl redis]# ./bin/redis-cli

linux端口开放

1、开启防火墙

systemctl start firewalld

2、开放指定端口

firewall-cmd --zone=public --add-port=6379/tcp --permanent

命令含义:
--zone #作用域
--add-port=6379/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效,没有此参数重启后失效

3、重启防火墙

firewall-cmd --reload

4、查看端口号

netstat -ntlp   //查看当前所有tcp端口·

5、开启远程访问

image-20210508122113872

Redis密码设置

[root@ccl redis-5.0.9]# cd /usr/local/redis
[root@ccl redis]# vim redis.conf
#找到requirepass foobared ,另起一行编辑下面的配置
requirepass [输入密码]
[root@ccl redis]# ./bin/redis-server redis.conf
[root@ccl redis]# ./bin/redis-cli -h 127.0.0.1 -p 6379 -a [密码]

查看密码:

config get requirepass

image-20210508113422802

可视化工具:Another Redis DeskTop

下载地址:https://gitee.com/qishibo/AnotherRedisDesktopManager/releases

posted @ 2021-05-08 13:13  yonugleesin  阅读(114)  评论(0编辑  收藏  举报