config.d folder:
Connect psql to ClickHouse
The following command demonstrates how to connect the PostgreSQL clientpsql to ClickHouse:
The
psql client requires a login with a password, so you won’t be able connect using the default user with no password. Either assign a password to the default user, or login as a different user.psql client prompts for the password:
The PostgreSQL protocol currently only supports plain-text passwords.
Using SSL
If you have SSL/TLS configured on your ClickHouse instance, thenpostgresql_port will use the same settings (the port is shared for both secure and insecure clients).
Each client has their own method of how to connect using SSL. The following command demonstrates how to pass in the certificates and key to securely connect psql to ClickHouse:
Configuring ClickHouse user authentication with SCRAM-SHA-256
To ensure secure user authentication in ClickHouse, it is recommended to use the SCRAM-SHA-256 protocol. Configure the user by specifying thepassword_scram_sha256_hex element in the users.xml file. The password hash must be generated with num_iterations=4096.
Ensure that the psql client supports and negotiates SCRAM-SHA-256 during connection.
Example configuration for user user_with_sha256 with the password abacaba: