1. 程式人生 > >Ubuntu16.04下安裝redis並實現helloworld

Ubuntu16.04下安裝redis並實現helloworld

ber -a lang 配置 ges image download rep mon

原文出處:http://blog.csdn.net/xiangwanpeng

1 sudo wget http://download.redis.io/releases/redis-3.2.6.tar.gz

技術分享

2 sudo tar -zxvf redis-3.2.6.tar.gz

技術分享

技術分享

3 如果沒有安裝gcc,需要先安裝

sudo apt-get install gcc

4 sudo make

技術分享

5 sudo make install

技術分享

6 復制配置文件redis.conf到/etc/redis/下,並用vi命令編輯該文件,將“daemonize no”修改為“daemonize yes”,即設置成作為後臺進程運行,修改完成後保存退出。

技術分享

技術分享

技術分享

7 進入到/usr/local/bin目錄下,執行命令:(默認端口6379)

redis-server /etc/redis/redis.conf

redis-cli -p 6379

技術分享

 

Ubuntu16.04下安裝redis並實現helloworld