基本都是官網的東西,只是有些坑作了記錄。html
http://docs.jumpserver.org/zh/docs/step_by_step.html前端
# CentOS 7
$ setenforce 0 # 能夠設置配置文件永久關閉
$ systemctl stop iptables.service
$ systemctl stop firewalld.service
# 修改字符集,不然可能報 input/output error的問題,由於日誌裏打印了中文
$ localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8
$ export LC_ALL=zh_CN.UTF-8
$ echo 'LANG="zh_CN.UTF-8"' > /etc/locale.conf
# CentOS6
$ setenforce 0
$ service iptables stop
# 修改字符集,不然可能報 input/output error的問題,由於日誌裏打印了中文
$ localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8
$ export LC_ALL=zh_CN.UTF-8
$ echo 'LANG=zh_CN.UTF-8' > /etc/sysconfig/i18n
1.1 安裝依賴包python
$ yum -y install wget sqlite-devel xz gcc automake zlib-devel openssl-devel epel-release git
Yum 加速設置請參考 <http://mirrors.163.com/.help/centos.html>mysql
1.2 編譯安裝linux
$ wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
$ tar xvf Python-3.6.1.tar.xz && cd Python-3.6.1
$ ./configure && make && make install
# 這裏必須執行編譯安裝,不然在安裝 Python 庫依賴時會有麻煩...
1.3 創建 Python 虛擬環境nginx
由於 CentOS 6/7 自帶的是 Python2,而 Yum 等工具依賴原來的 Python,爲了避免擾亂原來的環境咱們來使用 Python 虛擬環境git
$ cd /opt
$ python3 -m venv py3
$ source /opt/py3/bin/activate
# 看到下面的提示符表明成功,之後運行 Jumpserver 都要先運行以上 source 命令,如下全部命令均在該虛擬環境中運行
(py3) [root@localhost py3]
1.4 自動載入 Python 虛擬環境配置github
此項僅爲懶癌晚期的人員使用,防止運行 Jumpserver 時忘記載入 Python 虛擬環境致使程序沒法運行。使用autoenvweb
$ cd /opt
$ git clone git://github.com/kennethreitz/autoenv.git
$ echo 'source /opt/autoenv/activate.sh' >> ~/.bashrc
$ source ~/.bashrc
2.1 下載或 Clone 項目redis
項目提交較多 git clone 時較大,你能夠選擇去 Github 項目頁面直接下載zip包。
$ cd /opt/
$ git clone https://github.com/jumpserver/jumpserver.git && cd jumpserver && git checkout master
# mv jumpserver-master jumpserver(若是是下載zip包,解壓後須要手動改下名稱)
$ echo "source /opt/py3/bin/activate" > /opt/jumpserver/.env # 進入 jumpserver 目錄時將自動載入 python 虛擬環境
2.2 安裝依賴 RPM 包
$ cd /opt/jumpserver/requirements
# 首次進入 jumpserver 文件夾會有提示,按 y 便可
# Are you sure you want to allow this? (y/N) y
$ yum -y install $(cat rpm_requirements.txt) # 若是沒有任何報錯請繼續
2.3 安裝 Python 庫依賴
$ pip install -r requirements.txt # 不要指定-i參數,由於鏡像上可能沒有最新的包,若是沒有任何報錯請繼續
(py3) [root@uu requirements]# pip install -r requirements.txt
Collecting amqp==2.1.4 (from -r requirements.txt (line 1))
Could not fetch URL https://pypi.python.org/simple/amqp/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749) - skipping
Could not find a version that satisfies the requirement amqp==2.1.4 (from -r requirements.txt (line 1)) (from versions: )
No matching distribution found for amqp==2.1.4 (from -r requirements.txt (line 1))
解決:
(py3) [root@uu requirements]# date
2017年 08月 19日 星期六 03:25:05 CST
(py3) [root@uu requirements]# crontab -e
no crontab for root - using an empty one
*/10 * * * * /usr/sbin/ntpdate pool.ntp.org >/dev/null 2>&1
Pip 加速設置請參考 <https://segmentfault.com/a/1190000011875306>
2.4 安裝 Redis, Jumpserver 使用 Redis 作 cache 和 celery broke
$ yum -y install redis
$ systemctl start redis
# centos6
$ service redis start
2.5 安裝 MySQL
本教程使用 Mysql 做爲數據庫,若是不使用 Mysql 能夠跳過相關 Mysql 安裝和配置
# centos7
$ yum -y install mariadb mariadb-devel mariadb-server # centos7下安裝的是mariadb
$ systemctl enable mariadb
$ systemctl start mariadb
# centos6
$ yum -y install mysql mysql-devel mysql-server
$ chkconfig mysqld on
$ service mysqld start
2.6 建立數據庫 Jumpserver 並受權
$ mysql
> create database jumpserver default charset 'utf8';
> grant all on jumpserver.* to 'jumpserver'@'127.0.0.1' identified by 'somepassword';
> flush privileges;
2.7 修改 Jumpserver 配置文件
$ cd /opt/jumpserver
$ cp config_example.py config.py
$ vi config.py
# 注意對齊,不要直接複製本文檔的內容
注意: 配置文件是 Python 格式,不要用 TAB,而要用空格
"""
jumpserver.config ~~~~~~~~~~~~~~~~~ Jumpserver project setting file :copyright: (c) 2014-2017 by Jumpserver Team :license: GPL v2, see LICENSE for more details. """ import os BASE_DIR = os.path.dirname(os.path.abspath(__file__)) class Config: # Use it to encrypt or decrypt data # Jumpserver 使用 SECRET_KEY 進行加密,請務必修改如下設置 # SECRET_KEY = os.environ.get('SECRET_KEY') or '2vym+ky!997d5kkcc64mnz06y1mmui3lut#(^wd=%s_qj$1%x' SECRET_KEY = '請隨意輸入隨機字符串(推薦字符大於等於 50位)' # Django security setting, if your disable debug model, you should setting that ALLOWED_HOSTS = ['*'] # DEBUG 模式 True爲開啓 False爲關閉,默認開啓,生產環境推薦關閉 # 注意:若是設置了DEBUG = False,訪問8080端口頁面會顯示不正常,須要搭建 nginx 代理才能夠正常訪問了 DEBUG = False # 日誌級別,默認爲DEBUG,可調整爲INFO, WARNING, ERROR, CRITICAL,默認INFO LOG_LEVEL = 'ERROR' LOG_DIR = os.path.join(BASE_DIR, 'logs') # 使用的數據庫配置,支持sqlite3, mysql, postgres等,默認使用sqlite3 # See https://docs.djangoproject.com/en/1.10/ref/settings/#databases # 默認使用SQLite,若是使用其餘數據庫請註釋下面兩行 # DB_ENGINE = 'sqlite3' # DB_NAME = os.path.join(BASE_DIR, 'data', 'db.sqlite3') # # 若是須要使用mysql或postgres,請取消下面的註釋並輸入正確的信息,本例使用mysql作演示 DB_ENGINE = 'mysql' DB_HOST = '127.0.0.1' DB_PORT = 3306 DB_USER = 'jumpserver' DB_PASSWORD = 'somepassword' DB_NAME = 'jumpserver' # Django 監聽的ip和端口,生產環境推薦把0.0.0.0修改爲127.0.0.1,這裏的意思是容許x.x.x.x訪問,127.0.0.1表示僅容許自身訪問 # ./manage.py runserver 127.0.0.1:8080 HTTP_BIND_HOST = '127.0.0.1' HTTP_LISTEN_PORT = 8080 # Redis 相關設置 REDIS_HOST = '127.0.0.1' REDIS_PORT = 6379 REDIS_PASSWORD = '' def __init__(self): pass def __getattr__(self, item): return None class DevelopmentConfig(Config): pass class TestConfig(Config): pass class ProductionConfig(Config): pass # Default using Config settings, you can write if/else for different env config = DevelopmentConfig()
2.8 生成數據庫表結構和初始化數據
$ cd /opt/jumpserver/utils
$ bash make_migrations.sh
2.9 運行 Jumpserver
$ cd /opt/jumpserver
$ ./jms start all # 後臺運行使用 -d 參數./jms start all -d
# 新版本更新了運行腳本,使用方式./jms start|stop|status|restart all 後臺運行請添加 -d 參數
運行不報錯,請瀏覽器訪問 http://192.168.2.10:8080/ 默認帳號: admin 密碼: admin 頁面顯示不正常先不用處理,跟着教程繼續操做就行,後面搭建 nginx 代理就能夠正常訪問了
3.1 下載或 Clone 項目
新開一個終端,鏈接測試機,別忘了 source /opt/py3/bin/activate
$ cd /opt
$ source /opt/py3/bin/activate
$ git clone https://github.com/jumpserver/coco.git && cd coco && git checkout master
$ echo "source /opt/py3/bin/activate" > /opt/coco/.env # 進入 coco 目錄時將自動載入 python 虛擬環境
# 首次進入 coco 文件夾會有提示,按 y 便可
# Are you sure you want to allow this? (y/N) y
3.2 安裝依賴
$ cd /opt/coco/requirements
$ yum -y install $(cat rpm_requirements.txt)
$ pip install -r requirements.txt -i https://pypi.org/simple
3.3 修改配置文件並運行
$ cd /opt/coco
$ cp conf_example.py conf.py # 若是 coco 與 jumpserver 分開部署,請手動修改 conf.py
$ vi conf.py
# 注意對齊,不要直接複製本文檔的內容
注意: 配置文件是 Python 格式,不要用 TAB,而要用空格
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # import os BASE_DIR = os.path.dirname(__file__) class Config: """ Coco config file, coco also load config from server update setting below """ # 項目名稱, 會用來向Jumpserver註冊, 識別而已, 不能重複 # NAME = "localhost" NAME = "coco" # Jumpserver項目的url, api請求註冊會使用, 若是Jumpserver沒有運行在127.0.0.1:8080,請修改此處 # CORE_HOST = os.environ.get("CORE_HOST") or 'http://127.0.0.1:8080' CORE_HOST = 'http://127.0.0.1:8080' # 啓動時綁定的ip, 默認 0.0.0.0 # BIND_HOST = '0.0.0.0' # 監聽的SSH端口號, 默認2222 # SSHD_PORT = 2222 # 監聽的HTTP/WS端口號,默認5000 # HTTPD_PORT = 5000 # 項目使用的ACCESS KEY, 默認會註冊,並保存到 ACCESS_KEY_STORE中, # 若是有需求, 能夠寫到配置文件中, 格式 access_key_id:access_key_secret # ACCESS_KEY = None # ACCESS KEY 保存的地址, 默認註冊後會保存到該文件中 # ACCESS_KEY_STORE = os.path.join(BASE_DIR, 'keys', '.access_key') # 加密密鑰 # SECRET_KEY = None # 設置日誌級別 ['DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL', 'CRITICAL'] # LOG_LEVEL = 'INFO' # 日誌存放的目錄 # LOG_DIR = os.path.join(BASE_DIR, 'logs') # Session錄像存放目錄 # SESSION_DIR = os.path.join(BASE_DIR, 'sessions') # 資產顯示排序方式, ['ip', 'hostname'] # ASSET_LIST_SORT_BY = 'ip' # 登陸是否支持密碼認證 # PASSWORD_AUTH = True # 登陸是否支持祕鑰認證 # PUBLIC_KEY_AUTH = True # 和Jumpserver 保持心跳時間間隔 # HEARTBEAT_INTERVAL = 5 # Admin的名字,出問題會提示給用戶 # ADMINS = '' COMMAND_STORAGE = { "TYPE": "server" } REPLAY_STORAGE = { "TYPE": "server" } config = Config()
$ ./cocod start # 後臺運行使用 -d 參數./cocod start -d
# 新版本更新了運行腳本,使用方式./cocod start|stop|status|restart 後臺運行請添加 -d 參數
啓動成功後去Jumpserver 會話管理-終端管理(http://192.168.2.10:8080/terminal/terminal/)接受coco的註冊,若是頁面不正常能夠等部署完成後再處理
Luna 已改成純前端,須要 Nginx 來運行訪問
訪問(https://github.com/jumpserver/luna/releases)下載對應版本的 release 包,直接解壓,不須要編譯
4.1 解壓 Luna
$ cd /opt
$ wget https://github.com/jumpserver/luna/releases/download/1.3.2/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna
由於手動安裝 guacamole 組件比較複雜,這裏提供打包好的 docker 使用, 啓動 guacamole
5.1 Docker安裝 (僅針對CentOS7,CentOS6安裝Docker相對比較複雜)
$ yum remove docker-latest-logrotate docker-logrotate docker-selinux dockdocker-engine
$ yum install -y yum-utils device-mapper-persistent-data lvm2
# 添加docker官方源
$ yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
$ yum makecache fast
$ yum install docker-ce
# 國內部分用戶可能沒法鏈接docker官網提供的源,這裏提供阿里雲的鏡像節點供測試使用
$ yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
$ rpm --import http://mirrors.aliyun.com/docker-ce/linux/centos/gpg
$ yum makecache fast
$ yum -y install docker-ce
$ systemctl start docker
$ systemctl status docker
5.2 啓動 Guacamole
這裏所須要注意的是 guacamole 暴露出來的端口是 8081,若與主機上其餘端口衝突請自定義
修改下面 docker run 裏的 JUMPSERVER_SERVER 參數,填上 Jumpserver 的 url 地址, 啓動成功後去 Jumpserver 會話管理-終端管理(http://192.168.2.10:8080/terminal/terminal/)接受[Gua]開頭的一個註冊,若是頁面顯示不正常能夠等部署完成後再處理
# 注意:這裏須要修改下 http://<填寫jumpserver的url地址> 例: http://192.168.2.10, 不然會出錯, 帶寬有限, 下載時間可能有點長,能夠喝杯咖啡,撩撩對面的妹子
$ 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://<填寫jumpserver的url地址>:8080 \
registry.jumpserver.org/public/guacamole:latest
問題:
若是不在線需重啓# docker restart jms_guacamole,(如需從新註冊的話,須要重啓jms:[root@localhost jumpserver]# ./jms restart all -d)
若是後期顯示Windows白屏:
docker stop jms_guacamole
docker rm jms_guacamole
rm /opt/guacamole/key/*
systemctl stop docker
systemctl start docker
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://192.168.2.10 \
registry.jumpserver.org/public/guacamole:latest
# docker restart jms_guacamole
6.1 安裝 Nginx 根據喜愛選擇安裝方式和版本
$ yum -y install nginx
6.2 準備配置文件 修改 /etc/nginx/nginx.conf
內容以下:
$ vim /etc/nginx/nginx.conf
... 省略
# 把默認server配置塊改爲這樣
server {
listen 80; # 代理端口,之後將經過此端口進行訪問,再也不經過8080端口
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/; # 若是coco安裝在別的服務器,請填寫它的ip
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/; # 若是guacamole安裝在別的服務器,請填寫它的ip
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;
client_max_body_size 100m; # Windows 文件上傳大小限制
}
location / {
proxy_pass http://localhost:8080; # 若是jumpserver安裝在別的服務器,請填寫它的ip
}
}
... 省略
6.3 運行 Nginx
nginx -t # 確保配置沒有問題, 有問題請先解決
# CentOS 7
$ systemctl start nginx
$ systemctl enable nginx
# CentOS 6
$ service nginx start
$ chkconfig nginx on
6.4 開始使用 Jumpserver
檢查應用是否已經正常運行
$ cd /opt/jumpserver
$ ./jms status # 肯定jumpserver已經運行,若是沒有運行請從新啓動jumpserver
$ cd /opt/coco
$ ./cocod status # 肯定jumpserver已經運行,若是沒有運行請從新啓動coco
# 若是安裝了 Guacamole
$ docker ps # 檢查容器是否已經正常運行,若是沒有運行請從新啓動Guacamole
服務所有啓動後,訪問 http://192.168.2.10,訪問nginx代理的端口,不要再經過8080端口訪問
默認帳號: admin 密碼: admin
若是部署過程當中沒有接受應用的註冊,須要到Jumpserver 會話管理-終端管理 接受 Coco Guacamole 等應用的註冊。
** 測試鏈接**
若是登陸客戶端是 macOS 或 Linux ,登陸語法以下
$ ssh -p2222 admin@192.168.2.10
$ sftp -P2222 admin@192.168.2.10
密碼: admin
若是登陸客戶端是 Windows ,Xshell Terminal 登陸語法以下
$ ssh admin@192.168.2.10 2222
$ sftp admin@192.168.2.10 2222
密碼: admin
若是能登錄表明部署成功
# sftp默認上傳的位置在資產的 /tmp 目錄下
# windows拖拽上傳的位置在資產的 Guacamole RDP上的 G 目錄下