linux系統下Redis離線安裝

2021-09-24 22:06:22 字數 1836 閱讀 8110

安裝說明:系統環境:centos7.5最小化安裝 redis:redis-4.0.6.tar.gz

提取碼:2v8d

一、檢查伺服器上是否存在gcc-c++的環境,沒有則安裝

rpm -qa | grep gcc-c++

yum install -y gcc-c++

沒有配置yum源的可參考其他教程

二、上傳安裝包到伺服器,解壓安裝包

tar -zxvf redis-

4.0.6

.tar.gz

三、跳轉到安裝目錄下編譯安裝

cd redis-

4.0.6

make malloc

=libc

將/usr/local/redis-4.0.6/src目錄下的檔案加到/usr/local/bin目錄

cd src && make install
完成後如下圖所示

四、配置和開機自啟動redis

cp /usr/local/software/redis-

4.0.6

/utils/redis_init_script /etc/init.d/redisd

cd /etc/init.d/

chkconfig redisd on

報錯:service redisd does not support chkconfig(redisd不支援chkconfig)

解決:使用vim編輯redisd檔案,在首行加入如下兩行注釋,儲存退出。

# chkconfig:   2345 90 10

# description: redis is a persistent key-value database

再次執行開機啟動命令

chkconfig redisd on
編輯redis配置檔案

vim /usr/local/software/redis-

4.0.6

/redis.conf

1、將daemonize no改為daemonize yes,

2、注釋掉bind 127.0.0.1,取消只允許本地訪問

3、關閉保護模式,protected-mode yes改為protected-mode no

指定配置檔案後台啟動

cd /usr/local/software/redis-

4.0.6

/src

nohup .

/redis-server /usr/local/software/redis-

4.0.6

/redis.conf &

五、驗證安裝關閉防火牆,或者防火牆放行6379

ps -ef |grep redis

systemctl stop firewalld

Linux系統下離線安裝Nginx

1 作業系統 centos 7.3 2 nginx 1.12.01 安裝nginx rpm ivh nginx 1.12.0 1.el7.ngx.x86 64.rpm2 啟動nginx usr sbin nginx3 瀏覽器檢視 nginx安裝完畢之後有乙個預設頁面,我們可以訪問ip 80埠開啟ng...

linux系統下mysql離線安裝

提取碼 2v8d 一 檢查庫檔案是否存在,如有刪除。root localhost desktop rpm qa grep mysql mysql libs 5.1.52 1.el6 0.1.x86 64 root localhost rpm e mysql libs 5.1.52 x86 64 no...

linux系統下離線安裝nginx

linux系統下離線安裝nginx 系統環境 centos7.5最小化安裝,無私有yum源的情況下,依賴包安裝。nginx1.14.0安裝包和依賴包 總覽 nginx 1.14.0.tar.gz 1.安裝依賴包 把這些包拷貝到需要安裝nginx的伺服器上,可以單個安裝也可以全部一次性安裝。rpm i...