Splunk Dev

Splunk SDK for Python: Why the error Timeout error [Errno 60] Operation timed out?

Haydar
New Member

Hi there everyone, I'm a fresh beginner at Splunk SDK, was exploring stuff and tried to add a user using the library and the below code and it ended up with the error at the bottom. 

 

import splunklib.client as client

HOST = HOST
PORT = 8089
BEARER_TOKEN =BEARER_TOKEN

# Create a Service instance and log in
try:
service = client.connect(
host=HOST,
port=PORT,
splunkToken=BEARER_TOKEN,
verify=False
)
if service:
print("connected....)

except Exception as e:
print(e)


try:
service.users.create(
username="test123",
password="test321",
roles="admin"
)
except Exception as e:
print(f"and as it goeeees {e}")

 

TimeoutError: [Errno 60] Operation timed out

 

 

suggestions or guidance would be awesome if any

Sincerely

Haydar

Labels (4)
Tags (3)
0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...