一、配置第三方源
su root******yum install epel-release
yum update
exit
二、安裝redis
su root******yum install redis
exit
三、配置redis-conf
su root******vim /etc/redis.conf
開放遠端訪問(加上注釋#):
#bind
127.0.0.1
配置訪問密碼(去除注釋#):
requirepass yourpassword
wqexit
四、配置防火牆
1.檢視防火牆埠
firewall-cmd --list-ports
2.開啟埠
firewall-cmd --zone=public --add-port=6379/tcp --permanent
3.重啟防火牆
firewall-cmd --reload #重啟
--------firewallsystemctl stop firewalld.service #停止
--------firewallsystemctl disable firewalld.service #禁止firewall開機啟動
五、服務端命令
systemctl start redis.service #啟動redis伺服器systemctl stop redis.service #停止redis伺服器
systemctl restart redis.service #重新啟動redis伺服器
systemctl status redis.service #獲取redis伺服器的執行狀態
systemctl enable redis.service #開機啟動redis伺服器
systemctl disable redis.service #開機禁用redis伺服器
六、遠端連線
jedis = newjedis(redisip);
jedis.auth(redispassword);
Centos7下yum安裝配置nginx與php
實現lnmp環境搭建。開始安裝nginx和 php fpm之前,首先解除安裝系統中以前安裝的apache和php保證安裝不會衝突。用root登入輸入下面的命令 yum remve httpd php 增加額外資源庫 預設情況下,centos的官方資源是沒有php fpm的,但我們可以從remi的rp...
Centos7下yum安裝配置nginx與php
開始安裝nginx和 php fpm之前,首先解除安裝系統中以前安裝的apache和php保證安裝不會衝突。用root登入輸入下面的命令 增加額外nginx php最新資源庫 預設情況下,centos的官方資源是沒有php fpm的,但我們可以從remi的rpm資源中獲得,它依賴於epel資源。我們...
Centos7下yum安裝配置nginx與php
實現lnmp環境搭建。開始安裝nginx和php fpm之前,首先解除安裝系統中以前安裝的apache和php保證安裝不會衝突。用root登入輸入下面的命令 增加額外資源庫 預設情況下,centos的官方資源是沒有php fpm的,但我們可以從remi的rpm資源中獲得,它依賴於epel資源。我們可...