msingh39
(Maninder Singh)
April 8, 2026, 2:43am
1
Hi Folks,
I am setting up the CCP for one of the AD source. After installing the certificate and setting up the CCP config, I am getting below error. Certiicate is valid and cred as well but on testing the source connection still getting it.
missing something?
iamkiran
(Kiran Adhikari)
April 8, 2026, 3:21am
2
I’d first look at the PFX file and its password, because this error usually points there more than to the AD account itself.
If SailPoint says keystore password was incorrect, it normally means it could not open the .pfx with the password you entered.
A few things worth checking:
re-upload the .pfx and type the password again carefully
make sure the certificate file name in the config matches the uploaded file exactly
confirm the Credential Provider and AD source are on the same VA cluster
if your CyberArk endpoint uses an internal CA, make sure that cert chain is trusted on the VA
restart the VA/CCG once after uploading, just to rule out a stale load issue
If all of that looks fine, then I’d suspect the .pfx itself — either wrong password, wrong file, or export issue.
That’s where I’d start.
msingh39
(Maninder Singh)
April 8, 2026, 3:39am
3
Thanks I managed to upload the new cert with different name and it worked but now I am getting this error. Does this path looks correct?
secrets://CyberArk%2FAIMWebService%2Fapi%2FAccounts%3FAppID%3DSailpointNP%26Safe%3DCCP-Test
iamkiran
(Kiran Adhikari)
April 8, 2026, 3:58am
4
Looking at your secrets:// value, this might actually be part of the problem.
Right now it looks like you encoded the entire CyberArk URL in one go. In SailPoint, the secrets:// format is a bit picky — it expects the provider name and path to be structured, not one fully encoded string.
For example:
CyberArk should just be the Credential Provider name
then the rest (AppID, Safe, etc.) should be encoded as query params
and you usually need a final key like /Content or /Password
Something like this structure works better:
secrets://CyberArk/AppID%3DSailpointNP%26Safe%3DCCP-Test/Content
Right now, since everything is encoded together (CyberArk%2FAIMWebService%2Fapi...), SailPoint might not even be parsing it correctly, which can lead to weird errors that don’t directly point to the real issue.
Also worth testing the same CCP call via Postman/curl just to confirm what the expected response/key is.
msingh39
(Maninder Singh)
April 9, 2026, 1:19am
5
Kiran Adhikari:
the same CCP call vi
yeah trying via postman and its bit tricky as well. tried this and got this error.. Suspecting the URL is still incorrect.
https://npdasxxxxxx/AIMWebService/api/Accounts?AppID=SailpointNP&Safe=Operating System-P-WinDomain-CORP-test-TestCCP
error: Error:getaddrinfo ENOTFOUND npdasxxxxxx
msingh39
(Maninder Singh)
April 9, 2026, 3:53am
6
Does anyone has the correct working URL? want to cross check if the params I am passing are correct or not.
The following worked for us
secrets://<name of the CCP connector in ISC >/Object%3DobjectNameInCyberArk %26AppID%3DappIDInCyberArk /Content
Make sure the url ends with /Content - not the property/value you are trying to extract like Password but has to be “Content“
1 Like
msingh39
(Maninder Singh)
April 9, 2026, 11:27pm
8
Thanks Nikhil for sharing. Using the same url but getting error unable to find the provided, could be firewall issue which I am checking.
QQ though, objectNameInCyberArk is safe name, correct? Thanks in advance.
msingh39
(Maninder Singh)
April 13, 2026, 3:24am
9
Hi Folks,
I am kind of a stuck in here where not moving forward to complete the setup. Did below and still not getting the creds. Am I missing anything?
secret URL syntax is correct
can fetch cred from CyberArk connector server using the url
Network traffic flows from VM’s to connector server
Certs are in place
try to connect via postman but gettiing tunnel socket error.
Am I missing anything? Sailpoint support is of no help since we are doing it first time, they can’t help and want us to involve expert services.
Current Error: No matching credential provider found with given name : CyberArk/Safe=CCP-Test&AppID=SailpointNP/Content
msingh39
(Maninder Singh)
April 13, 2026, 6:25am
10
Nikhil Mahadkar:
/
Please ignore, I was able to resolve the issue from my end.
The URL has to be encoded to the = will translate to %3D.