Basic Tab
Connecting to Couchbase
To connect to data, set the Server property to the hostname or IP address of the Couchbase server(s) you are authenticating to. If your Couchbase server is configured to use SSL, you can enable it either by using an https URL for Server (like 'https://couchbase.server'), or by setting the UseSSL property to True.
Connecting to Couchbase Analytics Service
By default, the adapter connects to the N1QL Query service. In order to connect to the Couchbase Analytics service, you will also need to set the CouchbaseService property to Analytics.
Authenticating with Standard Authentication
To authenticate with standard authentication, set the following:
- User: The user authenticating to Couchbase.
- Password: The password of the user authenticating to Couchbase.
Authenticating with Client Certificates
The adapter supports authenticating with client certificates when SSL is enabled. To use client certificate authentication, set the following properties. Note that the User and Password options are not required when using client certificates.
- SSLClientCertType: Required. The type of client certificate set within SSLClientCert.
- SSLClientCert: Required. The client certificate in the format given by SSLClientCertType. Usually the path to your private key file.
- SSLClientCertPassword: Optional. The password of the client certificate if it is encrypted.
- SSLClientCertSubject: Optional. The subject of the client certificate, by default the first certificate found in the store. This is required if more than one certificate is available in the certificate store.
Authenticating Using a Credentials File
You can also authenticate using using a CredentialsFile. For more information on how to format your credentials file, refer to Couchbase's documentation. Note that the User and Password are not required when using a credentials file.