diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-16 22:35:26 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-16 22:39:03 +0200 |
commit | 92b5cf7ed66c1dbec7a5d0c5f1ef5f0c35a0e5dc (patch) | |
tree | 10cc1a976008452ba053f4fa4e247b730c467bba /docs/part-1/2_install-xds-server.md | |
parent | 938da5a671f370c7a07b884df66d2c8a83b167d2 (diff) |
Update xds-server doc
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'docs/part-1/2_install-xds-server.md')
-rw-r--r-- | docs/part-1/2_install-xds-server.md | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/docs/part-1/2_install-xds-server.md b/docs/part-1/2_install-xds-server.md index a84da95..7a8ff23 100644 --- a/docs/part-1/2_install-xds-server.md +++ b/docs/part-1/2_install-xds-server.md @@ -2,7 +2,7 @@ Depending of your configuration, this step is necessary or not. -IOW **you are a developer and plan to use/connect to an existing `xds-server`** +In other words **you are a developer and plan to use/connect to an existing `xds-server`** running on your local network (On-Premise config) or in the Cloud (SaaS config), **you don't need to install the server part and you can skip this step**. @@ -70,6 +70,9 @@ interface, what we call the "Dashboard", using a web browser : seb@laptop ~$ xdg-open http://localhost:8000 ``` +`xds-server` is now up and running, you can now install AGL SDKs, please refer +to chapter named "Installing AGL SDKs" + ### Container settings This container (ID=0) exposes following ports: @@ -97,9 +100,9 @@ _coming soon ..._ ## <a name="native"></a> Native installation -<!-- note --> -Only Linux host OS is supported and tested for native installation ! -<!-- endnote --> +You can chose to install xds-server 'natively' instead of within a docker +container but only Linux host OSes are supported and tested for native +installation ! ### Install packages for debian distro type @@ -184,16 +187,16 @@ All fields are optional and example below corresponds to the default values: ```bash # Status XDS server: -seb@laptop ~$ sudo systemctl status xds-server.service +seb@laptop ~$ systemctl --user status xds-server.service # Stop XDS server -seb@laptop ~$ sudo systemctl stop xds-server.service +seb@laptop ~$ systemctl --user stop xds-server.service # Start XDS server -seb@laptop ~$ sudo systemctl start xds-server.service +seb@laptop ~$ systemctl --user start xds-server.service # Get XDS server logs -seb@laptop ~$ sudo journalctl --unit=xds-server.service --output=cat +seb@laptop ~$ systemctl --user --unit=xds-server.service --output=cat ``` To check if xds-server is correctly install and running, you can access the web |