Security

How do I migrate knowledge objects from internal/local user to SAML user?

jthairu_splunk
Splunk Employee
Splunk Employee

I am looking for a little more information on how to transfer ownership of existing items (dashboards, reports, alerts, etc) owned by internal users to the new saml users?

0 Karma

twinspop
Influencer

In recent versions of Splunk you can use the re-asignment page.

Settings -> All Configurations -> Reassign Knowledge Objects

Use the menus and filter to narrow your search.

0 Karma

sansay
Contributor

Unfortunately, I just discovered that,
1. There is a known bug which prevents you from seeing the macros
2. This method only works for public knowledge objects, not private if the user no longer has access.
In that case, as indicated in the doc, you will have to temporarily recreate the user.

Also note that this behavior is observed in search head clusters.

0 Karma

twinspop
Influencer

All true statements. For this situation, I cobbled together a bash script to hit up all meta files and use sed to replace olduser with newuser, then move the olduser directory from $splunk/etc/users to a safe place for backup. You'll then need to clear search history for the user cuz for some reasons the scheduler will see that and try to auth non-existent users. Finally, restart splunk.

The search history clean:

echo removing $ORIG_OWNER from SavedSearchHistory collection cuz bug SPL-134750
for sid in splunk _internal call /servicesNS/nobody/system/storage/collections/data/SavedSearchHistory/ \
| grep $ORIG_OWNER | cut -d'"' -f 4 | xxd -plain | tr -d '\n' | sed 's/\(..\)/%\1/g' | sed -e 's/%0a/\n/g'

do
splunk _internal call /servicesNS/nobody/system/storage/collections/data/SavedSearchHistory/$sid -method DELETE
done

EDIT: Well that was clobbered. hopefully decipherable

suarezry
Builder

Hi @hthairu, we need some more info:

  1. Have the SAML users already logged in? (ie. Are their accounts already in splunk)
  2. Do you run a search head cluster or are they standalone search heads.
0 Karma

suarezry
Builder

Hi @deepashri, this will only work if the SAML user has logged in already.

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...