Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
df1c8549
Commit
df1c8549
authored
Mar 06, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改文档
parent
3fe5dade
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
20 deletions
+19
-20
admin_guide.rst
docs/admin_guide.rst
+1
-0
admin_instruction.rst
docs/admin_instruction.rst
+5
-14
step_by_step.rst
docs/step_by_step.rst
+13
-6
No files found.
docs/admin_guide.rst
View file @
df1c8549
...
...
@@ -6,5 +6,6 @@
.. toctree::
:maxdepth: 1
admin_instruction
admin_user
admin_asset
docs/
intro
.rst
→
docs/
admin_instruction
.rst
View file @
df1c8549
简介
============
Jumpserver是混合云下更好用的堡垒机, 分布式架构设计无限扩展,轻松对接混合云资产,支持使用云存储(AWS S3, ES等)存储录像、命令
Jumpserver颠覆传统堡垒机, 无主机和并发数量限制,支持水平扩容,FIT2CLOUD提供完备的商业服务支持,用户无后顾之忧
Jumpserver拥有极致的用户体验, 极致UI体验,容器化的部署方式,部署过程方便快捷,可持续升级
组件说明
++++++++++++++++++++++++
=================
Jumpserver
```````````
...
...
@@ -45,7 +35,7 @@ Jumpserver API Python SDK,Coco目前使用该SDK与Jumpserver API交互
`Github <https://github.com/jumpserver/jumpserver-python-sdk.git>`__
组件
架构图
++++++++++++++++++++++++
架构图
.. image:: _static/img/structure.png
:alt: 组件架构图
:alt: 组件架构图
\ No newline at end of file
docs/step_by_step.rst
View file @
df1c8549
...
...
@@ -230,16 +230,16 @@ Luna已改为纯前端,需要nginx来运行访问
五. 安装Windows支持组件
~~~~~~~~~~~~~~~~~~~~~~~
使用docker
启动 guacamole
因为手动安装 guacamole 组件比较复杂,这里提供打包好的docker使用,
启动 guacamole
.. code:: shell
docker run \
-p 808
0
:8080 \
-e JUMPSERVER_SERVER=http://
<jumpserver>
:8080 \
docker run
-d
\
-p 808
1
:8080 \
-e JUMPSERVER_SERVER=http://
localhost
:8080 \
jumpserver/guacamole
这里所需要注意的是guacamole暴露出来的端口是808
0,若与jumpserver部署在同一主机上
自定义一下。
这里所需要注意的是guacamole暴露出来的端口是808
1,若与主机上其他端口冲突请
自定义一下。
修改JUMPSERVER_SERVER的配置,填上jumpserver的内网地址
...
...
@@ -275,13 +275,20 @@ Luna已改为纯前端,需要nginx来运行访问
location /socket.io/ {
proxy_pass http://localhost:5000/socket.io/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /guacamole/ {
proxy_pass http://<guacamole>:8080/;
proxy_pass http://localhost:8081/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
access_log off;
}
location / {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment