CentOS 6.5 下安裝 Redis 2.8.7
wget
tar xvzf redis-stable.tar.gz
cd redis-stable
make
前面3步應該沒有問題,主要的問題是執行make的時候,出現了異常。
異常一:
make[2]: cc: Command not found
異常原因:沒有安裝gcc
解決方案:yum install gcc-c++
異常二:
zmalloc.h:51:31: error: jemalloc/jemalloc.h: No such file or directory
異常原因:一些編譯依賴或原來編譯遺留出現的問題
解決方案:make distclean。清理一下,然後再make。
在make成功以後,需要make test。在make test出現異常。
異常一:
couldn't execute "tclsh8.5": no such file or directory
異常原因:沒有安裝tcl
解決方案:yum install -y tcl。
在make成功以後,會在src目錄下多出一些可執行檔案:redis-server,redis-cli等等。
方便期間用cp命令複製到usr目錄下執行。
cp redis-server /usr/local/bin/
cp redis-cli /usr/local/bin/
然後新建目錄,存放配置檔案
mkdir /etc/redis
mkdir /var/redis
mkdir /var/redis/log
mkdir /var/redis/run
mkdir /var/redis/6379
在redis解壓根目錄中找到配置檔案模板,複製到如下位置。
cp redis.conf /etc/redis/6379.conf
透過vim命令修改
daemonize yes
pidfile /var/redis/run/redis_6379.pid
logfile /var/redis/log/redis_6379.log
dir /var/redis/6379
最後執行redis:
$ redis-server /etc/redis/6379.conf 原文:http://www.cnblogs.com/haoxinyue/p/3620648.html
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29754888/viewspace-1423671/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- CentOS 6.5下快速安裝MySQL 5.7.17CentOSMySql
- 3.1-centos6.5下安裝dockerCentOSDocker
- CentOS6.5安裝pipCentOS
- CentOS6.5 安裝opensslCentOS
- CentOS6.5安裝ScrapyCentOS
- CentOS 6.5-安裝Python 2.7.11CentOSPython
- centos6.5上安裝mysql 5.7.20CentOSMySql
- CentOS6.5安裝python3.7CentOSPython
- CentOS6.5安裝sqlite3CentOSSQLite
- CentOS6.5安裝ElasticSearch6.2.3CentOSElasticsearch
- Centos 安裝RedisCentOSRedis
- CentOS7.6下安裝Redis5.0.7CentOSRedis
- centos7 下安裝redis-4.0.2CentOSRedis
- CentOS 6.5 php原始碼安裝1.0版CentOSPHP原始碼
- CentOS 7 安裝redisCentOSRedis
- CentOS 7安裝RedisCentOSRedis
- CentOS redis安裝配置CentOSRedis
- Linux安裝rabbitmq簡單教程(Centos6.5)LinuxMQCentOS
- CentOS6.5安裝zookeeper-3.4.5(單機)CentOS
- CentOS7安裝RedisCentOSRedis
- Centos安裝與配置RedisCentOSRedis
- centos7.3安裝redisCentOSRedis
- CentOS6.5安裝kafka-2.10-0.8.2(單機)CentOSKafka
- Centos6.5映象下載CentOS
- CentOS 6.5中安裝使用dstat資源統計工具CentOS
- Mysql5.6 for Centos6.5原始碼編譯安裝MySqlCentOS原始碼編譯
- Centos7.9安裝配置redisCentOSRedis
- CentOS 7.4 安裝 redis5.0CentOSRedis
- CentOS中利用Docker安裝RedisCentOSDockerRedis
- 【Redis】Windows下安裝RedisRedisWindows
- Centos下安裝ffmpegCentOS
- centos下安裝dockerCentOSDocker
- Centos下安裝cassandraCentOS
- 教你如何在 CentOS 上安裝RedisCentOSRedis
- CentOS6.10安裝redis6.0.6CentOSRedis
- centos7 安裝 redis-5.0.3CentOSRedis
- Linux-Redis安裝(CentOS7)LinuxRedisCentOS
- CentOS6.10安裝redis5.0CentOSRedis
- CentOS 7 yum 安裝與配置 RedisCentOSRedis