wget
3.進入解壓後的資料夾,cd redis-5.0.7
4.給與全部檔案執行許可權chmod 777 */*
5.當前目錄執行make
6.當前目錄執行make test,報錯,you need tcl 8.5 or newer in order to run the redis test
安裝tcl:
wget
tar xzvf tcl8.6.1-src.tar.gz
cd ./tcl8.6.1/unix/
./configure
make
make install
繼續執行make test
6.指定目錄安裝make install prefix=/root/redis
7.cd /root/redis/bin
8../redis-server執行redis
9.更改redis為後台執行
cp /root/redis-5.0.7/redis.conf /root/redis/bin
vi /root/redis/bin/redis.conf
搜尋/daemonize
找到後將no 改為yes
儲存退出
cd /root/redis/bin
./redis-server ./redis.conf執行即可
Ubuntu18 如何安裝Postman
1.第一種方式 snap install sudo snap install postman 由於snap安裝方式是最新,雖然是以後的趨勢,但是目前,有的應用安裝或多或少存在問題。2第二種方式 傳統安裝包 sudo tar xzf postman linux x64 7.11.0.tar.gz c ...
ubuntu 18 編譯安裝 nginx
1,安裝依賴 apt get install gcc apt get install libpcre3 libpcre3 dev apt get install zlib1g zlib1g dev ubuntu14.04的倉庫中沒有發現openssl dev,由下面openssl和libssl de...
Ubuntu18安裝cuckoo沙箱
關於cuckoo的詳細資訊見官方文件 系統基礎軟體安裝 sudo apt get install python python pip python dev libffi dev libssl dev sudo apt get install python virtualenv python setu...