redis
安裝位置:/usr/local/redis
需要安裝依賴tcl >= 8.5
配置完成後到redis安裝目錄:
cd /usr/local/redis/src
啟動
這裡要注意提前修改redis.conf
檔案中的daemonize no
一行。改no
為yes
。允許作為守護程序啟動。
[root@bogon src]# ./redis-server &
[1] 3059
[root@bogon src]# 3059:c 28 apr 15:34:58.985 # oo0ooo0ooo0oo redis is starting oo0ooo0ooo0oo
3059:c 28 apr 15:34:58.986 # redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=3059, just started
3059:c 28 apr 15:34:58.986 # warning: no config file specified, using the default config. in
order
to specify a config file use ./redis-server /path/to/redis.conf
3059:m 28 apr 15:34:58.987 * increased maximum number
ofopen files to
10032 (it was originally set
to1024).
略去標誌圖案
3059:m 28 apr 15:34:58.989 # warning: the tcp backlog setting of
511 cannot be enforced because /proc/sys/net/core/somaxconn is
setto the lower value
of128.
3059:m 28 apr 15:34:58.989 # server initialized
停止
./redis-cli shutdwon
或者kill掉。
注釋:redis官方沒有使用init.d來管理redis。推薦使用自帶元件sentinel
來管理redis。強行使用service報錯start-stop-daemon.c
找不到。
centos6 6編譯安裝redis
原始碼編譯安裝 優點 以這種方式安裝的軟體效能會比其他方式更優一點 1.上傳原始碼 2.解壓 並指定解壓到哪個檔案下 tar zxvf redis 2.6.16.tar.gz c usr soft 3.make 出錯,提示gcc不存在 4.安裝gcc yum y install gcc.x86 64...
CentOS6 6原始碼編譯公升級GCC至4 8 2
原始碼編譯需要至少要有乙個可用的gcc編譯器。開始編譯gcc mkdir gcc build 4.8.2 cd gcc build 4.8.2 configure enable checking release enable languages c,c disable multilib make m...
Centos6 6安裝簡易桌面環境
軟體環境 作業系統centos6.6 應用場景 使用vmware安裝虛擬機器,使用最小化模式安裝,最後是終端模式。這種方式消耗資源較小,一般使用這種方式,不過後面如果需要安裝eclipse等工具時,需要具有桌面環境。此教程基於此應用環境。1.掛載安裝光碟 如果使用虛擬機器,那麼可以勾選下面的圖中的選...