|
I thought there was a way to enumerate the enabled and disabled apps from the CLI. Is this so, and if so, what is it? |
Prints lines like
, so you could pipe output to In general,
(20 Jan '10, 00:33)
V_at_Splunk
|
|
In Powershell that would be splunk display app | select-string "ENABLED" or | findstr "ENABLED" if you're an adept of Windows CMD shell |
|
Run the following command:
Result:
|
|
The CLI command would be: $SPLUNK_HOME/bin/splunk display app -auth login:password or under Windows: %SPLUNK_HOME%\bin\splunk display app -auth login:password eg. $SPLUNK_HOME/bin/splunk display app -auth admin:changeme This and other admin CLI commands can be referenced at: http://www.splunk.com/base/Documentation/4.1.1/Admin/CLIadmincommands |
|
From the CLI: "Splunk_Home"/splunk display app This should list all the apps and let you know if they are enabled or disabled. http://www.splunk.com/base/Documentation/4.1.1/Admin/CLIadmincommands Travis. Note that in older versions of splunk the variation whithout a specific app mentioned does nothing. This changed early in the 4.0.x series, I believe.
(22 Apr '10, 18:14)
jrodman ♦
|
