You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kubectl get secret dnode-group-marklogic -o jsonpath='{.data}'
243
+
```
244
+
The output will be similar to:
245
+
```
246
+
{"password":"R0JYaWxzR2c=","username":"YWRtaW4="}
247
+
```
248
+
3. Decode the password secret:
249
+
```
250
+
echo 'R0JYaWxzR2c=' | base64 --decode
251
+
```
252
+
The output will be similar to:
253
+
```
254
+
GBXilsGg
255
+
```
256
+
257
+
To upgrade the helm charts or deploy new helm charts for multi-node cluster, use the encoded value for admin password from the output of step 2.
258
+
259
+
To access the MarkLogic cluster use the decode value for admin password from the output of step 3.
260
+
261
+
224
262
### Log Collection
225
263
226
264
To enable log collection for all Marklogic logs set logCollection.enabled to true. Set each option in logCollection.files to true of false depending on if you want to track each type of Marklogic log file.
0 commit comments