- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Why is the passwords.conf is stored at /etc/apps/search/local instead of /{app_name}/local/?
cloudpassage
New Member
02-06-2018
09:10 AM
I'm using splunk python sdk to store encrypt and store my password.
service.storage_passwords.create(secret_key,api_key)
However, the passwords.conf was not created in my local folder, instead, it's stored in /etc/apps/search/local.
Any idea why? and how I can config the app so that it will store the passwords.conf in my /{APP}/local folder?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
micahkemp
Champion
02-06-2018
10:08 AM
When you create your client connection, pass your app path in the app
parameter.
For example:
s = client.connect(username="boris", password="natasha", app="yourapp")
