Security

Is it possible to modify users settings using the CLI?

JuGuSm
Path Finder

Hi,

I would like to modify some users option like "search assistant" or "syntax highlighting" using the CLI ; is it possible?

0 Karma
1 Solution

MuS
SplunkTrust
SplunkTrust

Hi JuGuSm,

well using CLI is a broad statement, and therefore I can answer this question with Yes, of course you can use CLI to change it.

Let me show you how to change the option search_assistant = none to search_assistant = full using CLI commands.

first option, use sed

sed -i 's/search_assistant = none/search_assistant = full/' /opt/splunk/etc/users/<username>/user-prefs/local/user-prefs.conf

second option, use curl and edit it using the REST endpoint:

curl -u admin:changeme -k https://localhost:8089//servicesNS/admin/user-prefs/properties/user-prefs/general/search_assistant -d value=full 

The result will be like this:

<?xml version="1.0" encoding="UTF-8"?>
<response>
  <messages>
    <msg type="INFO">Successfully modified 1 key(s)</msg>
  </messages>
</response>

Third option, use any CLI text editor and modify the file - yeah I know, lame but still a CLI option.

So, as you can see there are ways to edit the setting using CLI commands 😉

Hope this helps ...

cheers, MuS

View solution in original post

MuS
SplunkTrust
SplunkTrust

Hi JuGuSm,

well using CLI is a broad statement, and therefore I can answer this question with Yes, of course you can use CLI to change it.

Let me show you how to change the option search_assistant = none to search_assistant = full using CLI commands.

first option, use sed

sed -i 's/search_assistant = none/search_assistant = full/' /opt/splunk/etc/users/<username>/user-prefs/local/user-prefs.conf

second option, use curl and edit it using the REST endpoint:

curl -u admin:changeme -k https://localhost:8089//servicesNS/admin/user-prefs/properties/user-prefs/general/search_assistant -d value=full 

The result will be like this:

<?xml version="1.0" encoding="UTF-8"?>
<response>
  <messages>
    <msg type="INFO">Successfully modified 1 key(s)</msg>
  </messages>
</response>

Third option, use any CLI text editor and modify the file - yeah I know, lame but still a CLI option.

So, as you can see there are ways to edit the setting using CLI commands 😉

Hope this helps ...

cheers, MuS

JuGuSm
Path Finder

Awesome! Thank you for this very comprehensive answer.

0 Karma

adonio
Ultra Champion

probably not, but would be great to know if im wrong
read here:
http://docs.splunk.com/Documentation/Splunk/7.1.2/Admin/CLIadmincommands
pay attention to the add and remove command and their perspective attributes

0 Karma

pruthvikrishnap
Contributor

Hi, I dont think these capabilities are available from CLI, few operations can be done using CLI but not changing the user options.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Your Feedback. Our Roadmap. Visit the PX Feedback Booth at .conf26

You use Splunk every day, come and help shape what's next.  Save Your Seat: Product-Focused Sessions at ...

Agentic SOC Triage: Investigating Splunk ES Notables with MCP Server and a Local LLM

The Problem: Too Many Alerts, Too Little Context Security operations teams running Splunk Enterprise Security ...

Painting a Clearer Picture: Creating Cross-Domain Visibility with AI Canvas

Watch Now Painting a Clearer Picture: Creating Cross-Domain Visibility with AI Canvas     Do you ever feel ...