Jumpserver1.4.1安装
阅读原文时间:2023年07月11日阅读:1

第1章 CentOS环境准备

Jumpserver官网: http://docs.jumpserver.org/zh/docs/step_by_step.html

测试推荐硬件

CPU: 64位双核处理器

内存: 4G DDR3

系统: CentOS 7.2

IP: 192.168.3.66

关闭 selinux 和防火墙

# CentOS 7
setenforce 0 # 临时关闭,重启后失效
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.安装依赖包

yum -y install wget sqlite-devel xz gcc automake zlib-devel openssl-devel epel-release git

Yum 加速设置请参考 http://mirrors.163.com/.help/centos.html

$ mkdir /server/tools -p #个人习惯先创建一个放安装包的目录
$ mkdir /application #安装程序的目录
$ cd /server/tools
$ tar xvf Python-3.6.1.tar.xz -C /application
$ cd /application/Python-3.6.1/ && ./configure && make && make install

这里必须执行编译安装,否则在安装 Python 库依赖时会有麻烦…

因为 CentOS 6/7 自带的是 Python2,而 Yum 等工具依赖原来的 Python,为了不扰乱原来的环境我们来使用 Python 虚拟环境

$ cd /opt
$ python3 -m venv py3
$ source /opt/py3/bin/activate
#看到下面的提示符代表成功,以后运行jumpserver都要先运行以上source命令,一下命令均在虚拟环境中运行
(py3) [root@jhkj66 opt]#

此项仅为懒癌晚期的人员使用,防止运行 Jumpserver 时忘记载入 Python 虚拟环境导致程序无法运行。使用autoenv

$ cd /opt
$ git clone git://github.com/kennethreitz/autoenv.git
$ echo 'source /opt/autoenv/activate.sh' >> ~/.bashrc
$ source ~/.bashrc

第2章 安装jumpserver

项目提交较多 git clone 时较大,你可以选择去 Github 项目页面直接下载zip包

$ cd /opt
$ git clone https://github.com/jumpserver/jumpserver.git && cd jumpserver && git checkout master
$ echo "source /opt/py3/bin/activate" > /opt/jumpserver/.env #进入jumpserver目录时自动载入python虚拟环境
$ cd /opt/jumpserver/
autoenv: Are you sure you want to allow this? (y/N) y #首次进入jumpserver文件夹会有提示按y即可

$ cd /opt/jumpserver/requirements
$ yum -y install $(cat rpm_requirements.txt) # 如果没有任何报错请继续

$ pip install -r requirements.txt -i https://pypi.python.org/simple

第一种方式yum安装

# centos7
$ yum -y install redis
$ systemctl enable redis
$ systemctl start redis

centos6

$ yum -y install redis
$ chkconfig redis on
$ service redis start

第二种方式源码安装

本教程使用 Mysql 作为数据库,如果不使用 Mysql 可以跳过相关 Mysql 安装和配置

# centos7
$ yum -y install mariadb mariadb-devel mariadb-server # centos7下安装的是mariadb
$ systemctl enable mariadb
$ systemctl start mariadb

# mysql

create database jumpserver default charset 'utf8'; #创建库
grant all on jumpserver.* to 'jumpserver'@'%' identified by 'jumpserver'; #授权并创建用户密码
flush privileges;

$ 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 = os.environ.get("DEBUG") or True

# 日志级别,默认为DEBUG,可调整为INFO, WARNING, ERROR, CRITICAL,默认INFO  
LOG\_LEVEL = os.environ.get("LOG\_LEVEL") or 'WARNING'  
LOG\_DIR = os.path.join(BASE\_DIR, 'logs')

# 使用的数据库配置,支持sqlite3, mysql, postgres等,默认使用sqlite3  
# See https://docs.djangoproject.com/en/1.10/ref/settings/#databases

# 默认使用SQLite3,如果使用其他数据库请注释下面两行  
# DB\_ENGINE = 'sqlite3'  
# DB\_NAME = os.path.join(BASE\_DIR, 'data', 'db.sqlite3')

# 如果需要使用mysql或postgres,请取消下面的注释并输入正确的信息,本例使用mysql做演示(mariadb也是mysql)  
DB\_ENGINE = os.environ.get("DB\_ENGINE") or 'mysql'  
DB\_HOST = os.environ.get("DB\_HOST") or '127.0.0.1'  
DB\_PORT = os.environ.get("DB\_PORT") or 3306  
DB\_USER = os.environ.get("DB\_USER") or 'jumpserver'  
DB\_PASSWORD = os.environ.get("DB\_PASSWORD") or 'weakPassword'  
DB\_NAME = os.environ.get("DB\_NAME") or '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 = '0.0.0.0'  
HTTP\_LISTEN\_PORT = 8080

# Redis 相关设置  
REDIS\_HOST = os.environ.get("REDIS\_HOST") or '127.0.0.1'  
REDIS\_PORT = os.environ.get("REDIS\_PORT") or 6379  
REDIS\_PASSWORD = os.environ.get("REDIS\_PASSWORD") or ''  
REDIS\_DB\_CELERY = os.environ.get('REDIS\_DB') or 3  
REDIS\_DB\_CACHE = os.environ.get('REDIS\_DB') or 4

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()

$ cd /opt/jumpserver/utils
$ bash make_migrations.sh

$ cd /opt/jumpserver
$ ./jms start all # 后台运行使用 -d 参数./jms start all -d

新版本更新了运行脚本,使用方式./jms start|stop|status|restart all 后台运行请添加 -d 参数

运行不报错,请浏览器访问 http://192.168.3.66:8080/ 默认账号: admin 密码: admin 页面显示不正常先不用处理,继续往下操作,后面搭建 nginx 代理后即可正常访问,原因是因为 django 无法在非 debug 模式下加载静态资源,如下图

第3章 安装 SSH Server 和 WebSocket Server: Coco

新开一个终端,别忘了 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

$ cd /opt/coco/requirements
$ yum -y install $(cat rpm_requirements.txt)
$ pip install -r requirements.txt -i https://pypi.python.org/simple

$ 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\_LEVEL = 'WARN'

# 日志存放的目录  
# 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

# SSH白名单  
# ALLOW\_SSH\_USER = 'all'  # \['test', 'test2'\]

# SSH黑名单, 如果用户同时在白名单和黑名单,黑名单优先生效  
# BLOCK\_SSH\_USER = \[\]

# 和Jumpserver 保持心跳时间间隔  
# HEARTBEAT\_INTERVAL = 5

# Admin的名字,出问题会提示给用户  
# ADMINS = ''  
COMMAND\_STORAGE = {  
    "TYPE": "server"  
}  
REPLAY\_STORAGE = {  
    "TYPE": "server"  
}

# SSH连接超时时间 (default 15 seconds)  
# SSH\_TIMEOUT = 15

# 语言 = en  
LANGUAGE\_CODE = 'zh'

config = Config()

# 后台运行使用 -d 参数./cocod start -d

# 新版本更新了运行脚本,使用方式./cocod start|stop|status|restart  后台运行请添加 -d 参数

启动成功后去Jumpserver 会话管理-终端管理(http://192.168.3.66:8080/terminal/terminal/)接受coco的注册,如果注册不了的话等最后nginx安装完成之后再注册

第4章 安装 Web Terminal 前端: Luna

Luna 已改为纯前端,需要 Nginx 来运行访问

访问(https://github.com/jumpserver/luna/releases)下载对应版本的 release 包,直接解压,不需要编译

$ cd /opt
$ wget https://github.com/jumpserver/luna/releases/download/1.4.1/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna

第5章 安装 Windows 支持组件(如果不需要管理 windows 资产,可以直接跳过这一步)

因为手动安装 guacamole 组件比较复杂,这里提供打包好的 docker 使用, 启动 guacamole

$ 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

# 注意:这里需要修改下 http://<填写jumpserver的url地址> 例: http://192.168.244.144, 否则会出错, 带宽有限, 下载时间可能有点长,可以喝杯咖啡,撩撩对面的妹子

不能使用 127.0.0.1 ,可以更换 registry.jumpserver.org/public/guacamole:latest

$ 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地址> \
jumpserver/guacamole:latest

启动成功后去Jumpserver 会话管理-终端管理(http://192.168.3.66:8080/terminal/terminal/)接受[Gua]开头的一个注册

第6章 整合Nginx各组件

第一种yum安装简单快捷

$ yum -y install nginx

第二种编译安装请参考:

内容如下:

worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80; # 代理端口,以后将通过此端口进行访问,不再通过8080端口
client_max_body_size 100m; # 录像上传大小限制
location /luna/ {
try_files $uri / /index.html;
alias /opt/luna/; # 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";  
    proxy\_set\_header X-Real-IP $remote\_addr;  
    proxy\_set\_header Host $host;  
    proxy\_set\_header X-Forwarded-For $proxy\_add\_x\_forwarded\_for;  
    access\_log off;  
}  
location /guacamole/ {  
    proxy\_pass       http://localhost:8081/;  # 如果guacamole安装在别的服务器,请填写它的ip  
    proxy\_buffering off;  
    proxy\_http\_version 1.1;  
    proxy\_set\_header Upgrade $http\_upgrade;  
    proxy\_set\_header Connection $http\_connection;  
    proxy\_set\_header X-Real-IP $remote\_addr;  
    proxy\_set\_header Host $host;  
    proxy\_set\_header X-Forwarded-For $proxy\_add\_x\_forwarded\_for;  
    access\_log off;  
}  
location / {  
    proxy\_pass http://localhost:8080;  # 如果jumpserver安装在别的服务器,请填写它的ip  
    proxy\_set\_header X-Real-IP $remote\_addr;  
    proxy\_set\_header Host $host;  
    proxy\_set\_header X-Forwarded-For $proxy\_add\_x\_forwarded\_for;  
}  
    error\_page   500 502 503 504  /50x.html;  
location = /50x.html {  
        root   html;  
    }  
}  

}

nginx -t   # 确保配置没有问题, 有问题请先解决

# CentOS 7
$ systemctl start nginx
$ systemctl enable nginx

CentOS 6

$ service nginx start
$ chkconfig nginx on

$ cd /opt/jumpserver
$ ./jms status # 确定jumpserver已经运行,如果没有运行请重新启动jumpserver
$ cd /opt/coco
$ ./cocod status # 确定jumpserver已经运行,如果没有运行请重新启动coco

如果安装了 Guacamole

$ docker ps # 检查容器是否已经正常运行,如果没有运行请重新启动Guacamole

服务全部启动后,访问 http://192.168.3.66,访问nginx代理的端口,不要再通过8080端口访问默认账号: admin 密码: admin

如果部署过程中没有接受应用的注册,需要到Jumpserver 会话管理-终端管理 接受 Coco Guacamole 等应用的注册

如果登录客户端是 macOS 或 Linux ,登录语法如下

$ ssh -p2222 admin@192.168.3.66
$ sftp -P2222 admin@192.168.3.66
密码: admin

如果登录客户端是 Windows ,Xshell Terminal 登录语法如下
$ ssh admin@192.168.3.66 2222
$ sftp admin@192.168.3.66 2222
密码: admin
如果能登陆代表部署成功

sftp默认上传的位置在资产的 /tmp 目录下

windows拖拽上传的位置在资产的 Guacamole RDP上的 G 目录下

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章