博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redis 安装配置
阅读量:5013 次
发布时间:2019-06-12

本文共 1365 字,大约阅读时间需要 4 分钟。

下载安装RedisServer

mkdir –p /data/download && cd /data/download
wget http://download.redis.io/releases/redis-5.0.0.tar.gz
tar zxvf redis-5.0.0.tar.gz
cd redis-5.0.0
make install
完成上面步骤之后,Redis相关bin文件件就已经安装到/usr/bin/local目录下了
配置RedisServer
mkdir –p /data/redis
cat > /data/redis/redis.conf << 'EOF'
port 6379
bind 0.0.0.0
#cluster-enabled yes
#cluster-config-file nodes.conf
#cluster-node-timeout 5000
appendonly yes
EOF
启动RedisServer
cd /data/redis
/usr/local/bin/redis-server ./redis.conf
配置守护服务
cat > /etc/systemd/system/redis-6379.service << ‘EOF’
[Unit]
Description=redis service
[Service]
WorkingDirectory=/data/redis/
ExecStart=/usr/local/bin/redis-server /data/redis/redis.conf
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=redis-service
User=root
[Install]
WantedBy=multi-user.target
EOF
systemctl enable redis-6379.service
>>: Created symlink /etc/systemd/system/multi-user.target.wants/redis-6379.service → /etc/systemd/system/redis-6379.service.
启动服务
systemctl start redis-6379.service
检查服务状态
systemctl status redis-6379.service
可以看到
Active: active (running) since Sun 2018-10-21 03:35:09 EDT; 7s ago
再通过netstat –nltp查看开放的端口,
tcp        0      0 0.0.0.0:6379            0.0.0.0:*               LISTEN      5687/redis-server 0
至此,Redis Server已经安装配置好,服务器重启之后也会自动启动

转载于:https://www.cnblogs.com/yudapeng/p/11607499.html

你可能感兴趣的文章
python判断图片是否损坏
查看>>
MySQL服务启动:某些服务在未由其他服务或程序使用时将自动停止
查看>>
软件工程第四周作业 - 单元测试
查看>>
KNN与SVM对比&SVM与逻辑回归的对比
查看>>
php 现在拓展地址
查看>>
【Java并发编程】之十六:深入Java内存模型——happen-before规则及其对DCL的分析(含代码)...
查看>>
团队个人冲刺第三天
查看>>
unit
查看>>
2017-10-17 NOIP模拟赛2
查看>>
How to install ia32-libs in Ubuntu 14.04 LTS (Trusty Tahr)
查看>>
ACM/ICPC 之 模拟 (HNUOJ 13391-换瓶模拟)
查看>>
JavaWeb学习——JSP基础
查看>>
Eclipse tomcat server 无法添加项目
查看>>
黑寡妇黄飞鸿
查看>>
leetcode 217 Contains Duplicate 数组中是否有重复的数字
查看>>
The Ctrl & CapsLock `problem'
查看>>
MyBatis学习总结(二)——使用MyBatis对表执行CRUD操作
查看>>
linux故障判断
查看>>
Leetcode 23. Merge k Sorted Lists(python)
查看>>
Java进阶知识点6:并发容器背后的设计理念 - 锁分段、写时复制和弱一致性
查看>>