@@ -9,14 +9,14 @@ always change into the firewwall-orchestrator directory before starting the inst
99The following switch can be used to set the type of installation to perform
1010
1111``` console
12- ansible-playbook -e "installation_mode=upgrade" site.yml -K
12+ sudo ansible-playbook -e "installation_mode=upgrade" site.yml -K
1313```
1414
1515If you want to drop the database and re-install from scratch, do the following:
1616
1717``` console
18- ansible-playbook -e "installation_mode=uninstall" site.yml -K
19- ansible-playbook -e "installation_mode=new" site.yml -K
18+ sudo ansible-playbook -e "installation_mode=uninstall" site.yml -K
19+ sudo ansible-playbook -e "installation_mode=new" site.yml -K
2020```
2121
2222installation_mode options:
@@ -30,7 +30,7 @@ installation_mode options:
3030e.g. with IP 1.2.3.4, listening on port 3128<br >
3131
3232``` console
33- ansible-playbook -e "http_proxy=http://1.2.3.4:3128 https_proxy=http://1.2.3.4:3128" site.yml -K
33+ sudo ansible-playbook -e "http_proxy=http://1.2.3.4:3128 https_proxy=http://1.2.3.4:3128" site.yml -K
3434```
3535
3636use the following syntax for authenticated proxy access:
@@ -60,7 +60,7 @@ NB: for vscode-debugging, you also need access to
6060e.g. if your hasura metadata file needs to be re-created from scratch, then use the following switch:
6161
6262``` console
63- ansible-playbook -e "api_no_metadata=yes" site.yml -K
63+ sudo ansible-playbook -e "api_no_metadata=yes" site.yml -K
6464```
6565
6666### Parameter "install_syslog" allows disabling of separate syslog installation
@@ -69,7 +69,7 @@ Default value is install_syslog=yes but if you already have a syslog service run
6969
7070run installation without syslog installation:
7171``` console
72- ansible-playbook -e "install_syslog=no" site.yml -K
72+ sudo ansible-playbook -e "install_syslog=no" site.yml -K
7373```
7474
7575Here is a sample config you can use for configuring your already running syslog:
@@ -130,12 +130,11 @@ rsyslog config
130130### Parameter "api_docu" to install API documentation
131131
132132Generating a full hasura (all tables, etc. tracked) API documentation currently requires
133- - 2.3 GB additional hdd space ( at least 10 GB total for test install)
133+ - at least 10 GB total free hdd for test install
134134- a minimum of 8 GB RAM
135- - 4 minutes to generate
136135
137136``` console
138- cd firewall-orchestrator; ansible-playbook -e "api_docu=yes" site.yml -K
137+ sudo ansible-playbook -e "api_docu=yes" site.yml -K
139138```
140139
141140api docu can then be accessed at < https://server/api_schema/index.html >
@@ -150,7 +149,7 @@ The following options exist for communication to the UI:
150149
151150Example:
152151``` console
153- cd firewall-orchestrator; ansible-playbook -e "ui_comm_mode=no_ws" site.yml -K
152+ sudo ansible-playbook -e "ui_comm_mode=no_ws" site.yml -K
154153```
155154
156155## User interface server name and aliases
@@ -159,11 +158,11 @@ To make sure that firewall orchestrator UI webserver responds to the correct DNS
159158
160159Example to set fwodemo.cactus.de as webserver name:
161160``` console
162- cd firewall-orchestrator; ansible-playbook -e "ui_server_name='fwodemo.cactus.de'" site.yml -K
161+ sudo ansible-playbook -e "ui_server_name='fwodemo.cactus.de'" site.yml -K
163162```
164163Example to set fwodemo.cactus.de and two additional aliases as websrver names:
165164``` console
166- cd firewall-orchestrator; ansible-playbook -e "ui_server_name=fwodemo.cactus.de ui_server_alias=' fwo1.cactus.de fwo2.cactus.de'" site.yml -K
165+ sudo ansible-playbook -e "ui_server_name=fwodemo.cactus.de ui_server_alias=' fwo1.cactus.de fwo2.cactus.de'" site.yml -K
167166```
168167
169168## User interface Server Alias string
@@ -172,11 +171,11 @@ To be able to configure your webserver name, you may add the following parameter
172171
173172Example to set fwodemo.cactus.de as websrver name:
174173``` console
175- cd firewall-orchestrator; ansible-playbook -e "ui_server_alias='fwodemo.cactus.de'" site.yml -K
174+ sudo ansible-playbook -e "ui_server_alias='fwodemo.cactus.de'" site.yml -K
176175```
177176Example to set fwodemo.cactus.de and fwo2.cactus.de as websrver names:
178177``` console
179- cd firewall-orchestrator; ansible-playbook -e "ui_server_alias='fwodemo.cactus.de fwo2.cactus.de'" site.yml -K
178+ sudo ansible-playbook -e "ui_server_alias='fwodemo.cactus.de fwo2.cactus.de'" site.yml -K
180179```
181180
182181## Distributed setup with multiple servers
0 commit comments