diff --git a/README.md b/README.md index eaf65fe33..2a40fba79 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,34 @@ -# jumpserver -# +#欢迎使用Jumpserver +**Jumpserver**是一款由python编写开源的跳板机(堡垒机)系统,实现了跳板机应有的功能 + + + +> **统计管理** 统一管理用户 +> +> **授权** 授权用户登录特定主机 +> +> **审计** 审计用户操作 +> +> **web管理** 漂亮的web管理界面 + +## 主要模块 +#### 用户管理 #### + 负责用户管理,添加用户,编辑用户,建立部门,建立用户组等 +#### 资产管理 #### + 负责资产管理,添加资产,编辑资产,建立IDC,建立用户组等 +#### 授权管理 #### + 负责授权用户登录某些特定主机,授权sudo,查看授权申请 +#### 日志审计 #### + 负责用户操作的审计,监控用户操作,统计用户操作记录,中断用户操作 +#### 上传下载 #### + 负责用户文件上传下载 + +[官网](http://www.jumpserver.org) + +[demo站点](http://demo.jumpserver.org) + +[更新log](http://laoguang.blog.51cto.com/6013350/1635853) + +[部署文档](http://laoguang.blog.51cto.com/6013350/1636273) + + diff --git a/docs/requirements.txt b/docs/requirements.txt index 6c4cb7e91..654e1747d 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -5,6 +5,5 @@ paramiko pycrypto ecdsa>=0.11 MySQL-python -readline django-uuidfield psutil \ No newline at end of file diff --git a/service.sh b/service.sh index 84dbc41ba..69873375e 100644 --- a/service.sh +++ b/service.sh @@ -12,11 +12,12 @@ case $1 in start) python $base_dir/manage.py runserver 0.0.0.0:80 & python $base_dir/log_handler.py & - cd $base_dir/websocket/; daemon node index.js & + cd $base_dir/websocket/; node index.js & ;; stop) - pkill -15 python + pkill -15 runserver + pkill -15 log_handler.py pkill -15 node ;;