Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jumpserver/installer
Installer is a tool for managing the installation of JumpServer, enabling users to conveniently install, deploy, update, and manage JumpServer.
https://github.com/jumpserver/installer
docker-compose install quickstart release
Last synced: 3 days ago
JSON representation
Installer is a tool for managing the installation of JumpServer, enabling users to conveniently install, deploy, update, and manage JumpServer.
- Host: GitHub
- URL: https://github.com/jumpserver/installer
- Owner: jumpserver
- License: gpl-3.0
- Created: 2020-10-13T11:22:30.000Z (about 4 years ago)
- Default Branch: dev
- Last Pushed: 2024-10-30T08:53:04.000Z (16 days ago)
- Last Synced: 2024-10-30T09:19:35.629Z (16 days ago)
- Topics: docker-compose, install, quickstart, release
- Language: Shell
- Homepage: http://www.jumpserver.org
- Size: 708 KB
- Stars: 112
- Watchers: 11
- Forks: 64
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JumpServer 安装管理包
从 v2.6 开始,JumpServer 统一了 **社区版** 和 **企业版** 的安装部署包,统一由 本项目 来维护。
installer 可以安装、部署、更新 管理 JumpServer
## 环境依赖
- Linux x86_64
- Kernel 大于 4.0## 安装部署
```bash
# 安装,版本是在 static.env 指定的
$ ./jmsctl.sh install
```## 离线安装
[从社区下载离线安装包](https://community.fit2cloud.com/#/products/jumpserver/downloads)
## 管理
```
# 启动
$ ./jmsctl.sh start# 重启
$ ./jmsctl.sh restart# 关闭, 不包含数据库
$ ./jmsctl.sh stop# 关闭所有
$ ./jmsctl.sh down# 备份数据库
$ ./jmsctl.sh backup_db# 查看日志
$ ./jmsctl.sh tail```
## 配置文件说明
配置文件将会放在 /opt/jumpserver/config 中
```
[root@localhost config]# tree .
.
├── config.txt # 主配置文件
├── mysql
│ └── my.cnf # mysql 配置文件
|── mariadb
| └── mariadb.cnf # mariadb 配置文件
├── nginx # nginx 配置文件
│ ├── cert
│ │ ├── server.crt
│ │ └── server.key
│ ├── lb_http_server.conf
│ └── lb_ssh_server.conf
├── README.md
└── redis
└── redis.conf # redis 配置文件6 directories, 11 files
```### config.txt 说明
config.txt 文件是环境变量式配置文件,会挂在到各个容器中,这样可以不必为 koko,core,lion 单独设置配置文件
config-example.txt 有说明,可以参考 [JumpServer 参数说明文档](https://docs.jumpserver.org/zh/master/admin-guide/env/)