centoros 8 编译安装redis6,
Posted wuyi_all_in
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centoros 8 编译安装redis6,相关的知识,希望对你有一定的参考价值。
[Unit]
Description=Redis
After=network.target
[Service]
Type=forking
PIDFile=/var/run/redis_6379.pid
ExecStart=/usr/local/redis6/bin/redis-server /usr/local/redis6/conf/redis.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target
没有配置环境变量,需要这样打开
配置环境变量,可以在任意位置处打开
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
#PATH=$PATH:$HOME/bin
#export PATH
export REDIS_HOME=/usr/local/redis6
export PATH=$PATH:$REDIS_HOME/bin
可以在任意位置打开
以上是关于centoros 8 编译安装redis6,的主要内容,如果未能解决你的问题,请参考以下文章
大数据技术训练舱:Redis的分布式实践(上)从零开始编译安装配置Redis6,规范化搭建Java工程测试