在线安装

JumpServer 部署环境要求可点击后进行参考

1. 安装部署

中国大陆其他地区

  1. // root@localhost:/opt#
  2. $ curl -sSL https://resource.fit2cloud.com/jumpserver/jumpserver/releases/latest/download/quick_start.sh | bash
  3. ---> 100%
  4. <span style="color: green;">[Success]</span>: download install script to /opt/jumpserver-installer-v3.10.1
  5. [Info]: Start executing the installation script.
  6. [Info]: In an automated script deployment, note the message prompts on the screen.
  7. ---> 100%
  8. <span style="color: green;">[Success]</span>: The Installation is Complete.
  9. For more commands, you can enter <span style="color: red;">jmsctl --help</span> to view help information.
  1. // root@localhost:/opt#
  2. $ curl -sSL https://github.com/jumpserver/jumpserver/releases/latest/download/quick_start.sh | bash
  3. ---> 100%
  4. <span style="color: green;">[Success]</span>: download install script to /opt/jumpserver-installer-v3.10.1
  5. [Info]: Start executing the installation script.
  6. [Info]: In an automated script deployment, note the message prompts on the screen.
  7. ---> 100%
  8. <span style="color: green;">[Success]</span>: The Installation is Complete.
  9. For more commands, you can enter <span style="color: red;">jmsctl --help</span> to view help information.

提示

  • 首次安装后需要修改配置文件,定义 DOMAINS 字段后即可正常使用
  • 如果服务器是一键安装并且旧版本就已经使用 JumpServer 开启了 HTTPS,则不需要进行任何更改。
  • 需要使用 IP 地址来访问 JumpServer 的场景,可以根据自己的 IP 类型来填写 config.txt 配置文件中 DOMAINS 字段为公网 IP 还是内网 IP。
  1. # 打开config.txt 配置文件,定义 DOMAINS 字段
  2. vim /opt/jumpserver/config/config.txt
  3. # 可信任 DOMAINS 定义,
  4. # 定义可信任的访问 IP, 请根据实际情况修改, 如果是公网 IP 请改成对应的公网 IP,
  5. # DOMAINS="demo.jumpserver.org" # 使用域名访问
  6. # DOMAINS="172.17.200.191" # 使用 IP 访问
  7. # DOMAINS="demo.jumpserver.org,172.17.200.191" # 使用 IP 和 域名一起访问
  8. DOMAINS=

安装完成后 JumpServer 配置文件路径为: /opt/jumpserver/config/config.txt

  1. cd /opt/jumpserver-installer-v3.10.1
  2. # 启动
  3. ./jmsctl.sh start
  4. # 停止
  5. ./jmsctl.sh down
  6. # 卸载
  7. ./jmsctl.sh uninstall
  8. # 帮助
  9. ./jmsctl.sh -h

2. 环境访问

安装成功后,通过浏览器访问登录 JumpServer

  1. 地址: http://<JumpServer服务器IP地址>:<服务运行端口>
  2. 用户名: admin
  3. 密码: admin

登录页面