@@ -6,7 +6,7 @@ Currently, the `appliance_console_cli` feature is a subset of the full functiona
6
6
7
7
#### Database Configuration Options
8
8
9
- | | |
9
+ | | |
10
10
| ---------------- | ------------------------------------------------------------------------------------------ |
11
11
| Option | Description |
12
12
| --region (-r) | region number (create a new region in the database - requires database credentials passed) |
@@ -20,6 +20,26 @@ Currently, the `appliance_console_cli` feature is a subset of the full functiona
20
20
21
21
{: caption="Table 1. Database Configuration Options" caption-side="top"}
22
22
23
+ #### Messaging Configuration Options
24
+ | | |
25
+ | ----------------------------- | ----------------------------------------------------- |
26
+ | Option | Description |
27
+ | --message-server-config | configure appliance as a messaging server (boolean) |
28
+ | --message-server-unconfig | unconfigure appliance as a messaging server (boolean) |
29
+ | --message-client-config | configure appliance as a messaging server (boolean) |
30
+ | --message-client-unconfig | unconfigure appliance as a messaging server (boolean) |
31
+ | --message-keystore-username | messaging keystore username (defaults to admin) |
32
+ | --message-keystore-password | messaging keystore password |
33
+ | --message-server-username | messaging server username (defaults to admin) |
34
+ | --message-server-password | messaging server password |
35
+ | --message-server-port | messaging server port (defaults to 9093) |
36
+ | --message-server-use-ipaddr | use ipaddress not hostname for messaging server |
37
+ | --message-server-host | messaging server hostname or ipaddress |
38
+ | --message-truststore-path-src | path for messaging server truststore |
39
+ | --message-ca-cert-path-src | path to a certificate authority for messaging SSL |
40
+ | --message-persistent-disk | configure a new volume for storing messaging data |
41
+
42
+
23
43
#### v2_key Options
24
44
25
45
| | |
@@ -84,6 +104,14 @@ Currently, the `appliance_console_cli` feature is a subset of the full functiona
84
104
85
105
86
106
107
+ Set up an all-in-one appliance as a local database and messaging appliance and start the MIQ Server:
108
+
109
+ # appliance_console_cli --internal --dbdisk /dev/sdb --region 0 --password smartvm --message-server-config --message-keystore-password smartvm --server=start
110
+
111
+ Join a worker appliance to an existing region:
112
+
113
+ # appliance_console_cli --fetch-key db.example.com --sshlogin root --sshpassword smartvm --hostname db.example.com --password mydatabasepassword --message-client-config --message-server-host db.example.com --message-server-password smartvm --message-keystore-password smartvm --server start
114
+
87
115
To create a new database locally on the server by using ` /dev/sdb ` :
88
116
89
117
# appliance_console_cli --internal --dbdisk /dev/sdb --region 0 --password smartvm
@@ -96,6 +124,14 @@ You could combine the two to join a region where *db.example.com* is the applian
96
124
97
125
# appliance_console_cli --fetch-key db.example.com --sshlogin root --sshpassword smartvm --hostname db.example.com --password mydatabasepassword
98
126
127
+ To configure an appliance as a messaging server:
128
+
129
+ # appliance_console_cli --message-server-config --message-keystore-password="smartvm"
130
+
131
+ To configure an appliance as a messaging client:
132
+
133
+ # appliance_console_cli --message-client-config --message-server-host db.example.com --message-server-password smartvm --message-keystore-password smartvm
134
+
99
135
To configure external authentication:
100
136
101
137
# appliance_console_cli --host appliance.test.company.com
0 commit comments