Kaynağa Gözat

[docs] Refresh How to run API administrator

Romain Rigaux 4 yıl önce
ebeveyn
işleme
1b10c4b4af

+ 12 - 2
docs/docs-site/content/administrator/configuration/server/_index.md

@@ -37,7 +37,17 @@ The default setting is port 8888 on all configured IP addresses.
     http_host=0.0.0.0
     http_port=8888
 
-[Gunicorn](https://gunicorn.org/) support is planned to come in via [HUE-8739](https://issues.cloudera.org/browse/HUE-8739).
+### Gunicorn server
+
+Instead of running CherryPy, [Gunicorn](https://gunicorn.org/) will be launched:
+
+      # Set to true to use CherryPy as the webserver, set to false
+      # to use Gunicorn as the webserver. Defaults to CherryPy if
+      # key is not specified.
+      use_cherrypy_server=false
+
+      # Gunicorn work class: gevent or evenlet, gthread or sync.
+      gunicorn_work_class=sync
 
 ### Specifying the Secret Key
 
@@ -762,7 +772,7 @@ By default Hue stores the [saved documents](/user/concept/#documents) in its dat
 
     ## Client Secret for Authorized Application
     # client_secret=
-    
+
 ## Slack
 Currently in **Beta**
 

+ 15 - 1
docs/docs-site/content/administrator/installation/cloud.md

@@ -1,10 +1,24 @@
 ---
-title: "Cloud"
+title: "Run"
 date: 2019-03-13T18:28:08-07:00
 draft: false
 weight: 3
 ---
 
+## Process
+
+After the installation, you can start Hue on your Hue Server by doing:
+
+    build/env/bin/supervisor
+
+This will start several subprocesses, corresponding to the different Hue
+components. Your Hue installation is now running.
+
+After installation, you can use Hue by navigating to `http://myserver:8888/`.
+
+Next step is to [configure](/administrator/configuration/) the API server and point to external services.
+
+
 ## Docker
 
 To start a Hue instance:

+ 0 - 12
docs/docs-site/content/administrator/installation/install.md

@@ -18,15 +18,3 @@ You can install Hue anywhere on your system, and run Hue as a non-root user.
 
 It is a good practice to create a new user for Hue and either install Hue in
 that user's home directory, or in a directory within `/usr/share`.
-
-After the installation, you can start Hue on your Hue Server by doing:
-
-    build/env/bin/supervisor
-
-This will start several subprocesses, corresponding to the different Hue
-components. Your Hue installation is now running.
-
-After installation, you can use Hue by navigating to `http://myserver:8888/`.
-
-Next step is to [configure](/administrator/configuration/) Hue to point to the external services.
-Then, the [user guide](/user/index.html) will help users go through the various installed applications.