linux redis怎樣安裝配置

小樊
81
2024-11-05 14:09:17
欄目: 云計(jì)算

在 Linux 上安裝和配置 Redis 分為幾個(gè)步驟

  1. 安裝依賴: 首先,確保系統(tǒng)已更新并安裝了必要的依賴。在基于 Debian 的系統(tǒng)(如 Ubuntu)上,可以使用以下命令安裝依賴:
sudo apt-get update
sudo apt-get install build-essential tcl

在基于 RHEL 的系統(tǒng)(如 CentOS)上,可以使用以下命令安裝依賴:

sudo yum update
sudo yum install gcc tcl
  1. 下載 Redis 源碼: 從 Redis 官方網(wǎng)站(https://redis.io/download)下載最新版本的源碼包。例如,要下載 Redis 6.2.6,可以使用以下命令:
wget http://download.redis.io/redis-stable.tar.gz
  1. 解壓源碼包: 使用以下命令解壓下載的源碼包:
tar xvzf redis-stable.tar.gz
  1. 編譯 Redis: 進(jìn)入解壓后的 Redis 目錄,然后使用以下命令編譯 Redis:
make
  1. 安裝 Redis: 使用以下命令將 Redis 安裝到默認(rèn)目錄(/usr/local):
sudo make install

你也可以選擇將 Redis 安裝到其他目錄,例如 /opt。要做到這一點(diǎn),請(qǐng)?jiān)诰幾g時(shí)運(yùn)行以下命令:

make MALLOC=libc
sudo make install MALLOC=libc prefix=/opt
  1. 配置 Redis: Redis 的默認(rèn)配置文件位于 /usr/local/etc/redis.conf(或 /opt/redis/etc/redis.conf,如果你選擇了其他目錄)。你可以使用文本編輯器打開(kāi)此文件并對(duì)其進(jìn)行修改。以下是一些基本配置選項(xiàng):
  • bind: 設(shè)置 Redis 服務(wù)器監(jiān)聽(tīng)的 IP 地址。例如,要允許來(lái)自任何 IP 的連接,可以將其設(shè)置為 0.0.0.0。
  • port: 設(shè)置 Redis 服務(wù)器監(jiān)聽(tīng)的端口。默認(rèn)值為 6379。
  • protected-mode: 如果將此值設(shè)置為 yes,則 Redis 只允許本地連接。要允許遠(yuǎn)程連接,可以將其設(shè)置為 no
  • requirepass: 設(shè)置 Redis 密碼。要啟用密碼驗(yàn)證,請(qǐng)將其設(shè)置為非空字符串。
  1. 啟動(dòng) Redis 服務(wù): 使用以下命令啟動(dòng) Redis 服務(wù):
redis-server /usr/local/etc/redis.conf

(或 /opt/redis/etc/redis.conf,如果你選擇了其他目錄)

現(xiàn)在,Redis 服務(wù)應(yīng)該已啟動(dòng)并運(yùn)行。你可以使用 redis-cli 命令連接到 Redis 服務(wù)器并執(zhí)行命令。

  1. 設(shè)置開(kāi)機(jī)啟動(dòng): 要使 Redis 服務(wù)在系統(tǒng)啟動(dòng)時(shí)自動(dòng)運(yùn)行,可以使用以下命令創(chuàng)建一個(gè) Systemd 服務(wù)文件(以 Ubuntu 為例):
sudo nano /etc/systemd/system/redis.service

將以下內(nèi)容粘貼到文件中:

[Unit]
Description=Redis In-Memory Data Store
After=network.target

[Service]
User=redis
Group=redis
ExecStart=/usr/local/bin/redis-server /usr/local/etc/redis.conf
Restart=always

[Install]
WantedBy=multi-user.target

保存并退出編輯器。然后,使用以下命令啟用并啟動(dòng) Redis 服務(wù):

sudo systemctl enable redis
sudo systemctl start redis

現(xiàn)在,Redis 服務(wù)應(yīng)該已在后臺(tái)運(yùn)行,并在系統(tǒng)啟動(dòng)時(shí)自動(dòng)啟動(dòng)。你可以使用 redis-cli 命令連接到 Redis 服務(wù)器并執(zhí)行命令。

0