You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
右书僮 c931d3179b 修复资产组更新中 用户己选择的资产项不全问题 8 years ago
apps 修复资产组更新中 用户己选择的资产项不全问题 8 years ago
docs Update table desgin doc and audit log 8 years ago
install
logs Add new directory logs 8 years ago
requirements [Fixture] 完成用户推送task 8 years ago
utils [Update] 更新生成fake数据脚本 8 years ago
.gitignore user profile: update ssh pk 8 years ago
.python-version update dockerfile 8 years ago
Dockerfile update dockerfile 8 years ago
Dockerfile-base-env-alpine [Feature] 添加Dockerfile 8 years ago
LICENSE
README.md Update README.md 8 years ago
config_example.py [Bugfix] 修改一些bug 8 years ago
run_server.py [Fixture] 添加 rerun function 8 years ago

README.md

Jumpserver

Jumpserver是一款使用Python, Django开发的开源跳板机系统, 助力互联网企业高效 用户、资产、权限、审计 管理

开发环境

  • Python 2.7 # 开发时需考虑兼容Python3
  • Django 1.10

安装

  • 安装依赖库
   $ cd requirements
   $ sudo yum -y install `cat rpm_requirements.txt`  # CentOS/RedHat
   $ sudo apt-get  install `cat deb_requirements.txt`  # Ubuntu/Debian
  • 安装Python依赖包
# 请自行安装 Python2.7 和 pip, 以下运行是以python2.7和pip2.7开始
$ pip2.7 install -r requirements.txt -i https://pypi.doubanio.com/simple

# MacOS
$ pip2.7 install -r requirements.txt -i https://pypi.doubanio.com/simple --user
  • 配置文件
$ cd ..
$ cp config_example.py config.py

配置项 参考 config.py

  • 初始化数据库
# cd utils
# sh make_migrations.sh
# sh init_db.sh
  • 依赖redis
$ yum -y install redis
$ service redis start  # Run docker or redis-server &
  • 启动
$ python2.7 run_server.py

开发者文档