本文收錄在Linux運維企業架構實戰系列html
# CentOS 7 $ setenforce 0 # 能夠設置配置文件永久關閉 $ systemctl stop iptables.service $ systemctl stop firewalld.service # CentOS6 $ setenforce 0 $ service iptables stop
[root@centos7-1 opt]# yum -y install wget sqlite-devel xz gcc automake zlib-devel openssl-devel epel-release git前端
[root@centos7-1 opt]# wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xzpython
[root@centos7-1 opt]# tar xvf Python-3.6.1.tar.xz && cd Python-3.6.1mysql
[root@centos7-1 opt]# ./configure && make && make installlinux
由於 CentOS 6/7 自帶的是 Python2,而 Yum 等工具依賴原來的 Python,爲了避免擾亂原來的環境咱們來使用 Python 虛擬環境nginx
[root@centos7-1 opt]# cd /optc++
[root@centos7-1 opt]# python3 -m venv py3git
[root@centos7-1 opt]# source /opt/py3/bin/activategithub
注:看到下面的提示符表明成功,之後運行 Jumpserver 都要先運行以上 source 命令,如下全部命令均在該虛擬環境中運行web
(py3) [root@centos7-1 opt]#
項目提交較多 git clone 時較大,你能夠選擇去 Github 項目頁面直接下載zip包。
(py3) [root@centos7-1 opt]# cd /opt/
(py3) [root@centos7-1 opt]# git clone --depth=1 https://github.com/jumpserver/jumpserver.git && cd jumpserver && git checkout master
(py3) [root@centos7-1 jumpserver]# cd /opt/jumpserver/requirements
(py3) [root@centos7-1 jumpserver]# yum -y install $(cat rpm_requirements.txt) # 若是沒有任何報錯請繼續
(py3) [root@centos7-1 requirements]# pip install -r requirements.txt # 不要指定-i參數,由於鏡像上可能沒有最新的包,若是沒有任何報錯請繼續
成功以下圖:
(py3) [root@centos7-1 requirements]# yum -y install redis
(py3) [root@centos7-1 requirements]# systemctl start redis
本教程使用 Mysql 做爲數據庫,若是不使用 Mysql 能夠跳過相關 Mysql 安裝和配置
(1)# centos7
(py3) [root@centos7-1 requirements]# yum -y install mariadb mariadb-devel mariadb-server # centos7下安裝的是mariadb
(py3) [root@centos7-1 requirements]# systemctl start mariadb.service
(2)# centos6
$ yum -y install mysql mysql-devel mysql-server
$ service mysqld start
(py3) [root@centos7-1 requirements]# mysql
MariaDB [(none)]> create database jumpserver default charset 'utf8';
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all on jumpserver.* to 'jumpserver'@'127.0.0.1' identified by 'along';
Query OK, 0 rows affected (0.00 sec)
(py3) [root@centos7-1 requirements]# cd /opt/jumpserver
(py3) [root@centos7-1 jumpserver]# cp config_example.py config.py
(py3) [root@centos7-1 jumpserver]# vim config.py # 咱們計劃修改 DevelopmentConfig中的配置,由於默認jumpserver是使用該配置,它繼承自Config
class DevelopmentConfig(Config): #找到這一段,進行下面的配置 DEBUG = True DB_ENGINE = 'mysql' DB_HOST = '127.0.0.1' DB_PORT = 3306 DB_USER = 'jumpserver' DB_PASSWORD = 'along' DB_NAME = 'jumpserver'
注意: 配置文件是 Python 格式,不要用 TAB,而要用空格
(py3) [root@centos7-1 jumpserver]# cd /opt/jumpserver/utils
(py3) [root@centos7-1 utils]# bash make_migrations.sh
成功以下圖:
(1)老版本啓動方法
(py3) [root@centos7-1 utils]# cd /opt/jumpserver
(py3) [root@centos7-1 jumpserver]# python run_server.py all
(2)新版本啓動方法
(py3) [root@centos7-1 jumpserver]# ./jms start all # 後臺運行使用-d 如:參數./jms start all -d
# 新版本更新了運行腳本,使用方式./jms start|stop|status|restart all 後臺運行請添加 -d 參數
注意:
① 第一次運行時可能報錯,(這裏只是 Jumpserver, 沒有 Web Terminal,因此訪問 Web Terminal 會報錯)
② 終止程序,再次執行,就能夠登陸了
(py3) [root@centos7-1 jumpserver]# ./jms start all
帳號: admin 密碼: admin
③ 登陸成功
新開一個終端,鏈接測試機,別忘了 source /opt/py3/bin/activate
[root@centos7-1 ~]# source /opt/py3/bin/activate
(py3) [root@centos7-1 ~]# cd /opt/
(py3) [root@centos7-1 opt]# git clone https://github.com/jumpserver/coco.git && cd coco && git checkout master
(py3) [root@centos7-1 coco]# cd /opt/coco/requirements
(py3) [root@centos7-1 requirements]# yum -y install $(cat rpm_requirements.txt)
(py3) [root@centos7-1 requirements]# pip install -r requirements.txt
成功以下圖:
(1)運行
(py3) [root@centos7-1 requirements]# cd /opt/coco
(py3) [root@centos7-1 coco]# cp conf_example.py conf.py
(py3) [root@centos7-1 coco]# ./cocod start # 後臺運行使用 -d 參數./cocod start -d
# 新版本更新了運行腳本,使用方式./cocod start|stop|status|restart 後臺運行請添加 -d 參數
(2)這時須要去 Jumpserver 管理後臺-會話管理-終端管理(http://192.168.10.101:8080/terminal/terminal/)接受 Coco 的註冊
(3)命令行終端顯示鏈接成功
(1)linux 鏈接
[root@centos7-1 ~]# ssh -p2222 admin@192.168.10.101 #新開一個終端去鏈接密碼: admin
(2)若是是用在 Windows 下,Xshell Terminal 登陸語法以下
$ssh admin@192.168.244.144 2222
密碼: admin
若是能登錄表明部署成功
(3)登陸成功以下圖:
Luna 已改成純前端,須要 Nginx 來運行訪問
訪問(https://github.com/jumpserver/luna/releases)下載對應版本的 release 包,直接解壓,不須要編譯
[root@centos7-1 ~]# cd /opt/
[root@centos7-1 opt]# wget https://github.com/jumpserver/luna/releases/download/v1.0.0/luna.tar.gz
[root@centos7-1 opt]# tar xvf luna.tar.gz
[root@centos7-1 opt]# ls /opt/luna
由於手動安裝 guacamole 組件比較複雜,這裏提供打包好的 docker 使用, 啓動 guacamole
① 安裝依賴 [root@centos7-1 ~]# yum remove docker-latest-logrotate docker-logrotate docker-selinux dockdocker-engine [root@centos7-1 ~]# yum install -y yum-utils device-mapper-persistent-data lvm2 ② 安裝docker
添加docker官方源
[root@centos7-1 ~]# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
[root@centos7-1 ~]# yum makecache fast
[root@centos7-1 ~]# yum install docker-ce
③ 國內部分用戶可能沒法鏈接docker官網提供的源,這裏提供阿里雲的鏡像節點供測試使用
[root@centos7-1 ~]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
[root@centos7-1 ~]# rpm --import http://mirrors.aliyun.com/docker-ce/linux/centos/gpg
[root@centos7-1 ~]# yum makecache fast
[root@centos7-1 ~]# yum -y install docker-ce
④ 啓動docker
[root@centos7-1 ~]# systemctl start docker
[root@centos7-1 ~]# systemctl status docker
① 這裏所須要注意的是 guacamole 暴露出來的端口是 8081,若與主機上其餘端口衝突請自定義
修改 JUMPSERVER_SERVER 環境變量的配置,填上 Jumpserver 的內網地址
# 注意:這裏必定要改寫一下本機的IP地址, 不然會出錯, 帶寬有限, 下載時間可能有點長,能夠喝杯咖啡,撩撩對面的妹子
docker run --name jms_guacamole -d \ -p 8081:8080 -v /opt/guacamole/key:/config/guacamole/key \ -e JUMPSERVER_KEY_DIR=/config/guacamole/key \ -e JUMPSERVER_SERVER=http://<填寫本機的IP地址>:8080 \ registry.jumpserver.org/public/guacamole:1.0.0
② 執行過程截圖
啓動成功後去 Jumpserver 會話管理-終端管理(http://192.168.10.101:8080/terminal/terminal/)接受[Gua]開頭的一個註冊,若是頁面顯示不正常能夠等部署完成後再處理
nginx 官網https://nginx.org/en/download.html
(1)安裝前準備
① 下載版本包,我以nginx-1.12.2爲例
[root@centos7-1 nginx]# wget -c https://nginx.org/download/nginx-1.12.2.tar.gz
[root@centos7-1 nginx]# tar -xvf nginx-1.12.2.tar.gz
② 下載依賴包
[root@centos7-1 nginx]# yum install gc gcc gcc-c++ pcre-devel zlib-devel openssl-devel
③ 建立nginx用戶、組
[root@centos7-1 nginx-1.12.2]# groupadd nginx
[root@centos7-1 nginx-1.12.2]# useradd -s /sbin/nologin -g nginx -M nginx
(2)編譯安裝
[root@centos7-1 nginx-1.12.2]# ./configure --user=nginx --group=nginx --prefix=/mnt/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
[root@centos7-1 nginx-1.12.2]# make && make install
[root@centos7-1 nginx-1.12.2]# cd /mnt/nginx/ # 完成
註釋:#指定運行權限的用戶
--user=nginx
#指定運行的權限用戶組
--group=nginx
#指定安裝路徑
--prefix=/usr/local/nginx
#支持nginx狀態查詢
--with-http_stub_status_module
#開啓ssl支持
--with-http_ssl_module
#開啓GZIP功能
--with-http_gzip_static_module
(3)使systemctl 控制nginx 服務
[root@centos7-1 nginx]# vim /usr/lib/systemd/system/nginx.service
[Unit] Description=nginx - high performance web server Documentation=http://nginx.org/en/docs/ After=network.target remote-fs.target nss-lookup.target [Service] Type=forking PIDFile=/mnt/nginx/logs/nginx.pid ExecStartPre=/mnt/nginx/sbin/nginx -t -c /mnt/nginx/conf/nginx.conf ExecStart=/mnt/nginx/sbin/nginx -c /mnt/nginx/conf/nginx.conf ExecReload=/bin/kill -s HUP $MAINPID ExecStop=/bin/kill -s QUIT $MAINPID PrivateTmp=true [Install] WantedBy=multi-user.target
[root@centos7-1 ~]# vim /mnt/nginx/conf/nginx.conf 清除已有的server段
server { listen 80; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location /luna/ { try_files $uri / /index.html; alias /opt/luna/; } location /media/ { add_header Content-Encoding gzip; root /opt/jumpserver/data/; } location /static/ { root /opt/jumpserver/data/; } location /socket.io/ { proxy_pass http://localhost:5000/socket.io/; proxy_buffering off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } location /guacamole/ { proxy_pass http://localhost:8081/; proxy_buffering off; proxy_http_version 1.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection; access_log off; } location / { proxy_pass http://localhost:8080; } }
[root@centos7-1 ~]# /mnt/nginx/sbin/nginx -t # 檢查配置文件
[root@centos7-1 ~]# service nginx start