dc test
Description
Validates Oracle TCPS connectivity to the ISE DataConnect database. This is the first command to run when setting up DataConnect - it confirms credentials, SSL configuration, and network reachability.
Options
This command has no options.
|
Use the global
|
Sample Output
Success:
✓ Connected to ISE DataConnect (10.50.1.21:2484)
Failure (credentials):
✗ DataConnect connection failed: ORA-01017: invalid username/password; logon denied
Failure (SSL):
✗ DataConnect connection failed: [SSL: CERTIFICATE_VERIFY_FAILED]
Environment Variables
| Variable | Description | Default |
|---|---|---|
|
MnT node IP or hostname |
(required) |
|
Oracle TCPS port |
|
|
DataConnect username |
|
|
DataConnect password |
(required) |
|
Oracle service name |
|
|
Path to MnT SSL certificate |
(optional) |
|
Skip SSL verification |
|
Troubleshooting
ORA-01017: Invalid username/password
The dataconnect account may be locked after failed attempts.
Fix: ISE Admin GUI → Administration → System → Settings → Data Connect → toggle Off/On, set new password.
SSL Certificate Verify Failed
Extract the MnT node’s certificate:
# Extract cert (run once per environment)
CERT=~/.secrets/certs/<domain>/ise/dataconnect.crt
[ -f "$CERT" ] || {
mkdir -p "$(dirname "$CERT")"
echo | openssl s_client -connect <mnt-host>:2484 2>&1 | \
sed -n '/BEGIN CERT/,/END CERT/p' > "$CERT"
}
# Set in your secrets
export ISE_DATACONNECT_CA="$CERT"
See Also
-
DataConnect Overview - Setup and all commands
-
stats - Authentication statistics