https://redis.io/
gcc --version
如果没有gcc,需要下载
进入解压后的redis目录执行
make
然后执行
make install
默认下载到的位置:/usr/local/bin
cp redis.conf /etc/redis.conf
vim /etc/redis.conf
将daemonize no 改为 yes,允许后台启动
进入到redis下载目录
cd /usr/local/bin/
启动
redis-server /etc/redis.conf
查看
ps -ef | grep redis
客户端访问
redis-cli
未完待续…
阿里云服务器搭建Java环境及Tomcat服务器