CentOS7 3 安裝Redis 阿里雲 親試

2021-07-31 17:02:40 字數 678 閱讀 7340

# yum install redis
# service redis start 

// 設定為開機自動啟動

# chkconfig redis on

# redis-cli
如果報以下資訊,證明沒啟動redis

could not connect to redis at 127.0.0.1:6379: connection refused

出現這種情況可檢視/etc/redis.conf中的daemonize 是否為yes,不是則修改(vi基本命令這裡不做說明)

# vi /etc/redis.conf
使用ps -ef | grep redis檢視redis程序:

[root@localhost etc]# ps -ef | grep redis 

redis 4766410

05:31 ? 00:00:00 /usr/bin/redis-server 127.0.0.1:6379

root 47808

45376

005:32 pts/0

00:00:00

grep –color=auto redis

centos7 3安裝redis4 0 8主從集群

192.168.241.101 paascloud redis 001 192.168.241.102 paascloud redis 002 192.168.241.103 paascloud redis 003 1wget 1 2 tar zxvf redis 4.0.8.tar.gz c us...

CentOS7 3安裝部署wordpress

centos7.3安裝部署wordpresswordpress簡介 wordpress是使用php語言開發的部落格平台,使用者可以在支援php和mysql資料庫的伺服器上架設屬於自己的 也可以把 wordpress當作乙個內容管理系統 cms 來使用。root luchao yum install ...

CentOS 7 3 安裝 PYTHON 環境

centos 7.4 預設 帶了 個 python2.7 環境 然 現在主流都是 python3 所以接下來再裝 個 python3 打造 個共存的環境。tar zxvf python 3.8.6.tgz則可以在當前 錄得到 件夾 python 3.8.6直接執 如下命令即可 yum install...