2.4. Misc

2.4.1. cfglog

Show configuration log.

Description

Displays warning and error messages related to configuration of the system. By default, shows log entries from the latest reconfigure sequence.

Usage

cfglog 
Show log.
cfglog -all 
Show log.
cfglog -clear 
Clear log.

Options

-all
Show all log entries.
-clear
Clears all entries in the configuration log. (Admin only)

2.4.2. cmdview

Set the command view(s).

Description

Set the command views that are used when filtering out the set of commands and options that is available in the CLI.

Besides the ordinary set of commands within the 'default' view, there are two other views named 'advanced' and 'debug'. The 'advanced' view covers commands that display extensive and detailed information about the system's runtime values. The commands within the 'advanced' view do not have any impact on the system's behavior and network traffic. The commands covered by the 'debug' view can affect system behavior and network traffic and should be used with some care. These commands are mainly intended for system/network tests and debugging.

Usage

cmdview [{DEFAULT | ADVANCED | DEBUG | SERVICE | ALL}] 

Options

{DEFAULT | ADVANCED | DEBUG | SERVICE | ALL}
Command view.

2.4.3. grep

Filter the output based on a regular expression.

Description

The grep command is a text-search utility that searches output for specified patterns, printing lines where these patterns occur. It allows for advanced searches, including inverting the search and counting matching lines. Integrate other commands with grep using a pipe (|) for enhanced text processing and data analysis.

Usage

grep <Expr> [-v] [-i] [-k] [-A=<num>] [-B=<num>] [-C=<num>] 

Options

-A=<num>
Number of lines to include after match. (Default: 0)
-B=<num>
Number of lines to include before match. (Default: 0)
-C=<num>
Number of lines to include surrounding match. (Default: 0)
-i
Ignore case.
-k
Count lines.
-v
Invert match.
<Expr>
POSIX extended regular expression search pattern.

2.4.4. helpconfig

Show help for configuration objects.

Description

The config help system contains information about configuration object types.

The fastest way to get help is to simply type helpconfig followed by the topic that you want help with. A topic can be the name of a configuration object type (e.g. User).

When you don't know the name of what you are looking for you can use tab-completion to display a list of matching topics.

Usage

helpconfig <Topic> 

Options

<Topic>
Help topic.

2.4.5. history

Show command history.

Description

List recently typed commands that have been stored in the command history.

Usage

history 

2.4.6. localconfiguration

Show management status and enable local configuration.

Description

Show management status, and regain local configuration control if the centralized management system has it.

If the centralized management system has taken control of the system, any single user may not do configuration changes to the system. In order to regain local configuration control to single users this command is used. Once local configuration is enabled, centralized management control can only be enabled by the centralized management system.

Usage

localconfiguration [-enable] 

Options

-enable
Enable local configuration.
[Note] Note
Requires Administrator privileges.

2.4.7. quit

Alias for exit.

2.4.8. shutdown

Initiates shutdown/restart of the system.

Description

Shuts the system down to restart it (or to power it off).

Usage

shutdown 
Normal shutdown/restart of the system.
shutdown -handover 
Shutdown/restart that makes an HA handover to the peer first, if the node is the active node, before shutting down.
shutdown -ignore-ha 
Shutdown/restart that shuts down even if this system is the active HA node of a cluster, without explicit handover and even if the peer is OFFLINE.
shutdown -noninteractive [-handover] [-ignore-ha] 
Normal shutdown/restart but with a behaviour more suitable for automation.
shutdown -processrestart [-handover] [-ignore-ha] [-noninteractive]
Only restart the system's processes instead of a full restart of the POD/system. (NOTE: Usage not available when running non-containerized)
shutdown -force -ignore-ha [-noninteractive] 
Shutdown using an alternative shutdown procedure skipping most of the normal shutdown activities. This should only be used if normal shutdown of the system malfunctions.
shutdown -poweroff [-handover] [-ignore-ha] 
Power down the system. (NOTE: Usage not available when running as a container)

Options

-force
Activates an alternative shutdown procedure skipping most of the normal shutdown activities. This should only be used if normal shutdown of the system malfunctions.
-handover
Make an HA handover to the peer first before shutting down if the node is the active node.
-ignore-ha
Shut down even if this system is the active HA node of a cluster, without explicit handover and even if the peer is OFFLINE.
-noninteractive
To be used when invoking the shutdown command from within scripts etc. This option will make the command skip interactive questions and instead print an error and cancel the command. This option will also change the command's behaviour to not fail in cases (like ongoing crashdumps) when it would have been beneficial to "wait a while" before re-attempting shutdown.
-poweroff
Power down the system instead of rebooting. (NOTE: Option not available when running as a container)
-processrestart
Only restart the system's processes instead of a full restart of the POD/system. (NOTE: Option not available when running non-containerized)
[Note] Note
Requires Administrator privileges.