摘要:安裝介紹用作系統(tǒng)的緩存安裝流程以及中間出現(xiàn)的問題由于本人使用作為開發(fā)語言,所以習慣下面的備注信息使用符號下面命令我是在用戶下運行以下為中間出現(xiàn)的報錯信息和解決方式上面是說找不到鏡像,首先考慮的是網(wǎng)絡問題,想到了服務器配置,之前
[TOC]
centos6.6安裝redis3.0.2redis用作系統(tǒng)的緩存
# 由于本人使用Python作為開發(fā)語言,所以習慣下面的備注信息使用#符號 # 下面命令我是在root用戶下運行 # yum -y install gcc make tcl # wget http://download.redis.io/releases/redis-3.0.2.tar.gz # tar -zxvf redis-3.0.2.tar.gz # mv redis-3.0.2 /usr/local/redis # cd /usr/local/redis # make # make test # make install
# 以下為中間出現(xiàn)的報錯信息和解決方式 # yum -y install gcc make tcl Loaded plugins: fastestmirror Setting up Install Process Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os&infra=stock error was 14: PYCURL ERROR 6 - "Couldn"t resolve host "mirrorlist.centos.org"" Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again # 上面是說找不到鏡像,首先考慮的是網(wǎng)絡問題,想到了DNS服務器配置,之前 以為別人已經(jīng)配置過了,沒想到?jīng)]有
# 以下為配置DNS服務器 # vi /etc/resolv.conf # 將其內(nèi)容改為以下內(nèi)容(我的之前沒有,是自己vi新建的) nameserver 8.8.8.8 nameserver 202.106.0.20 # 之后重啟網(wǎng)絡服務 # /etc/init.d/network restart # 運行結(jié)果如下 Shutting down interface eth0: [ OK ] Shutting down loopback interface: [ OK ] Bringing up loopback interface: [ OK ] Bringing up interface eth0: Determining if ip address 192.168.17.39 is already in use for device eth0... [ OK ]
# 設置配置文件路徑 # mkdir -p /etc/redis # 回到redis目錄下面,/usr/local/redis # cd /usr/local/redis # cp redis.conf /etc/redis # 修改配置文件 # vi /etc/redis/redis.conf # 暫時只修改守護進程 daemonize yes (no-->yes) # 啟動redis # /usr/local/bin/redis-server /etc/redis/redis.conf # 查看啟動 # ps -ef | grep redis # 使用客戶端 # redis-cli # 關(guān)閉客戶端 # redis-cli shutdown # 設置開機啟動 # echo "/usr/local/bin/redis-server /etc/redis/redis.conf &" >> /etc/rc.local
至此,有關(guān)redis的安裝基本完成,有關(guān)后面的配置設置操作留待后面解決。
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/41338.html
摘要:安裝成功后,將得到如下提示分別給出了設置環(huán)境變量的方法和官方的參考文檔的位置。安裝當應用安裝到當前登錄用戶的文件夾中。安裝配置環(huán)境變量注意非環(huán)境如下安裝解壓文件在同一文件夾下,分別解壓和。 由于Intel編譯器支持的服務器系統(tǒng)列表為: Supported operating systems for this release include: - Red Hat Enterpri...
閱讀 898·2019-08-30 15:54
閱讀 1466·2019-08-30 15:54
閱讀 2400·2019-08-29 16:25
閱讀 1292·2019-08-29 15:24
閱讀 749·2019-08-29 12:11
閱讀 2506·2019-08-26 10:43
閱讀 1227·2019-08-26 10:40
閱讀 466·2019-08-23 16:24