1. 程式人生 > 實用技巧 >Jenkins的搭建與使用

Jenkins的搭建與使用

  1. 下載上傳 Redis安裝包官網

  1. 解壓包

    tar -zxf redis-5.0.4.tar.gz
    
  2. 進入解壓後的檔案,可以看到我們redis的配置檔案

[root@ysl opt]# cd redis-5.0.4/
[root@ysl redis-5.0.4]# ll
total 256
-rw-rw-r--  1 root root 99445 Mar 19  2019 00-RELEASENOTES
-rw-rw-r--  1 root root    53 Mar 19  2019 BUGS
-rw-rw-r--  1 root root  1894 Mar 19  2019 CONTRIBUTING
-rw-rw-r--  1 root root  1487 Mar 19  2019 COPYING
drwxrwxr-x  6 root root   192 Nov  1 17:04 deps
-rw-rw-r--  1 root root    11 Mar 19  2019 INSTALL
-rw-rw-r--  1 root root   151 Mar 19  2019 Makefile
-rw-rw-r--  1 root root  4223 Mar 19  2019 MANIFESTO
-rw-rw-r--  1 root root 20555 Mar 19  2019 README.md
-rw-rw-r--  1 root root 62155 Mar 19  2019 redis.conf
-rwxrwxr-x  1 root root   275 Mar 19  2019 runtest
-rwxrwxr-x  1 root root   280 Mar 19  2019 runtest-cluster
-rwxrwxr-x  1 root root   281 Mar 19  2019 runtest-sentinel
-rw-rw-r--  1 root root  9710 Mar 19  2019 sentinel.conf
drwxrwxr-x  3 root root  8192 Nov  1 17:05 src
drwxrwxr-x 10 root root   167 Mar 19  2019 tests
drwxrwxr-x  8 root root  4096 Mar 19  2019 utils

  1. 基本的環境安裝
yum install gcc-c++
  1. 安裝redis

    make
    make install
    
  2. 安裝成功的後

  3. 建立 bin 與 etc 資料夾,將啟動檔案和配置檔案放在此資料夾下

[root@ysl redis-5.0.4]# mkdir etc bin  #建立資料夾
[root@ysl redis-5.0.4]# cp redis.conf etc/redis.conf  # 複製配置檔案到etc資料夾下
[root@ysl redis-5.0.4]# cd src/ 
[root@ysl src]# mv mkreleasehdr.sh redis-benchmark redis-check-aof redis-check-rdb redis-cli redis-server /opt/redis/bin/  複製啟動檔案、客戶端檔案等到etc資料夾下
[root@ysl src]# 
  1. 在bin資料夾下啟動redis

    ./ redis-server
    

    1. 配置配置檔案

      daemonize no 改為 yes 後臺執行

      protected-mode yes 改為no 可以不用輸入密碼登陸

      bind 127.0.0.1 表示只可以本機訪問,要是遠端訪問需要註釋掉(前面加#號)

  1. 帶配置檔案後臺啟動

    ./redis-server ../etc/redis.conf
    
    1. 客戶端登陸
    redis-cli -p 6379
    

MySql 安裝