這篇文章主要介紹“CentOS7下怎么用非root用戶安裝redis并運(yùn)行”,在日常操作中,相信很多人在CentOS7下怎么用非root用戶安裝Redis并運(yùn)行問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”CentOS7下怎么用非root用戶安裝Redis并運(yùn)行”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于做網(wǎng)站、網(wǎng)站建設(shè)、汕城網(wǎng)絡(luò)推廣、微信小程序定制開發(fā)、汕城網(wǎng)絡(luò)營銷、汕城企業(yè)策劃、汕城品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供汕城建站搭建服務(wù),24小時(shí)服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com
序號(hào) | ID | 版本 |
---|---|---|
1 | 操作系統(tǒng) | CentOS7 |
2 | redis | 5.0.12 |
redis下載地址:
我們這里使用的是5.0.12
1)、使用root登錄我們的系統(tǒng)
2)、新建組:groupadd redisgroup
3)、新建用戶:useradd -g redisgroup redis
4)、設(shè)置密碼:passwd redis 自己輸入密碼即可
groupadd redisgroupuseradd -g redisgroup redispasswd redis
1)、使用root用戶,新建目錄:mkdir -p /usr/local/src/redis
2)、解壓壓縮包:tar -zxvf redis-5.0.12.tar.gz
如下:
mkdir -p /usr/local/src/redistar -zxvf redis-5.0.12.tar.gz
切換到redis用戶,在用戶目錄下新建文件夾:redis
mkdir rediscd redismkdir datamkdir etc
使用root用戶操作
1)、編譯:cd redis-5.0.12
make
2)、安裝:
make install PREFIX=/home/redis/redis
1)、將
/usr/local/src/redis/redis-5.0.12
下的redis.conf
文件復(fù)制到/home/redis/redis/etc
目錄下2)、如果復(fù)制不了就用root賦權(quán)限,chmod 777 redis.conf
3)、復(fù)制過來之后,改一下文件的所屬組和用戶
chown redis redis.confchgrp redisgroup redis.conf
修改配置文件我們主要修改三個(gè)地方:
1)、修改為后臺(tái)運(yùn)行
2)、修改支持其他機(jī)器連接
下面的三個(gè)鍵值,直接在配置文件中修改即可
# yes-后臺(tái)模式運(yùn)行,no-前臺(tái)模式運(yùn)行,默認(rèn)daemonize yes# 下面的這里給注釋掉,默認(rèn)是放開的#bind 127.0.0.1# 下面的這個(gè)值改為no,默認(rèn)是yesprotected-mode no
1)、使用
redis
用戶登錄,我們?cè)谟脩裟夸浵滦陆ㄒ粋€(gè)目錄bin
2)、在
bin
目錄下新建一個(gè)redctl
腳本,并授予可執(zhí)行的權(quán)限,chmod a+x redisctl
3)、將
~/bin
目錄加到用戶的環(huán)境變量中去修改用戶目錄下的
.bash_profile
文件,在倒數(shù)第二行增加
PATH=$PATH:~/bin
完整內(nèi)容如下:
# .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then. ~/.bashrcfi# User specific environment and startup programsPATH=$PATH:$HOME/.local/bin:$HOME/bin PATH=$PATH:~/binexport PATH
編寫的redctl腳本,支持redis啟動(dòng),停止,重啟以及狀態(tài)查看,詳細(xì)內(nèi)容如下:
redctl
#!/bin/bash#check paramif [ $# -lt 1 ]; thenecho "USAGE: redctl start|stop|restart|status"exit 8fipid=0 ACTION=$1REDIS_HOME=$HOME/redis# Here define some functiongetpid(){pid=`ps -ef | grep redis-server | grep -v grep |awk '{print $2}'`}start(){getpidif [ ! -n "$pid" ]; thencd $REDIS_HOME/bin ./redis-server ../etc/redis.conf getpidif [ ! -n "$pid" ]; thenecho "redis-server start failed, please check your commond"elseecho "redis-server start success, PID: $pid"fielseecho "redis-server is running PID: $pid"fi}stop(){getpidif [ ! -n "$pid" ]; thenecho "redis-server is not running"elsekill -9 $pidecho "redis-server has been stopped"fi}restart(){stopsleep 1s start}status(){getpidif [ ! -n "$pid" ]; thenecho "redis-server is not running"elseecho "redis-server is running PID: $pid"fi}case $ACTION instart) start;;stop) stop;;restart) restart;;status) status;;*) echo "require start|stop|restart|status" ;;esac
依次執(zhí)行,啟動(dòng),查看狀態(tài),重啟,停止,命令如下:
redctl start
redctl status
redctl restart
redctl stop
我們?cè)俅螆?zhí)行一下啟動(dòng)命令,將redis服務(wù)啟動(dòng)起來,
使用
redis-cli
連接上,嘗試設(shè)置一些值,并查看所設(shè)置的值,如下:表示成功
未安裝gcc g++包的話,請(qǐng)自行安裝
yum install -y gcc g++
到此,關(guān)于“CentOS7下怎么用非root用戶安裝Redis并運(yùn)行”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!