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 (5)
Tags (3)
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...