CentOs7 急速安装 Redis,献给还在为装机浪费生命的同学。
准备工作:
Centos7 最小化安装(或者更高)
Redis 官网下载 Redis 安装包 ()
开始:
把文件上传到服务器,我这是上传到 /root/ 路径,redis 版本为 4.0.1
[root@localhost ~]# lltotal 1676-rw-------. 1 root root 1320 Aug 14 13:48 anaconda-ks.cfg-rwxr-xr-x. 1 root root 1711660 Aug 14 15:15 redis-4.0.1.tar.gz[root@localhost ~]#
执行安装命令
export REDIS_FILE=redis-4.0.1.tar.gz && \export REDIS_FOLDER=redis-4.0.1 && \yum install -y gcc gcc-c++ && \tar -xzvf $REDIS_FILE -C /usr/local/ && \cd /usr/local/$REDIS_FOLDER && \make MALLOC=libc && \cd src/ && \cp ../redis.conf . && \sed -i 's/bind 127.0.0.1/#bind 127.0.0.1/g' redis.conf && \sed -i 's/daemonize no/daemonize yes/g' redis.conf && \echo 'requirepass 123456' >> redis.conf && \./redis-server redis.conf
解释一下前2行
REDIS_FILE: redis文件的全称包括后缀。
REDIS_FOLDER: redis压缩包解压出来的文件夹的名字。
执行完 mongodb 默认启动
端口为 6379,
允许远程连接 (在生产环境建议关闭远程连接)
默认密码为 123456
这里为了方便演示远程连接先将防火墙关闭
systemctl stop firewalld && setenforce 0;
使用客户端测试连接
成功连接