Secure Sockets Layer (SSL) support
Db2 database uses self signed certificate for SSL communication. You can download the certificate from the web console to trust your clients.
Secure Sockets Layer (SSL) is a security protocol that provides communication privacy. SSL enables client and server applications to communicate in a way that is designed to prevent eavesdropping, tampering, and message forgery. SSL-enabled client applications use standard encryption techniques to help ensure secure communication.
Configuring your applications to connect to the Db2 database with SSL depends on your company policy. Both the standard and the SSL protocols that you can use to connect to the database transmit user names and passwords as encrypted data. If you want to ensure complete end-to-end security, transmit all database information, including sensitive data and metadata, through an SSL connection.
Connecting to your database
- [Optional] If you use Data Studio, you can now connect to the
database by selecting port
50001andsslConnection=true. - Catalog the node and
database:
db2 catalog tcpip node ACICLD_S remote <IP_address_of_BLUDB_database_server> server 50001 security SSLdb2 catalog db BLUDB as ACIBLU_S at node ACICLD_S - Connect to your database with an SSL
connection:
db2 terminate db2 connect to ACIBLU_S user <user_name> using <password>