MySQL
GreptimeCloud exposes GreptimeDB access in MySQL server-client protocol. Most standard clients and drivers are compatible and the connection is encrypted with TLS. Refer to MySQL client of GreptimeDB for more information.
To connect to GreptimeCloud in MySQL protocol, using information below:
- Host:
<host>
- Port:
4002
- Database:
<dbname>
- Username:
<username>
- Password:
<password>
MySQL CLI
Connect to GreptimeCloud service instance using mysql
CLI.
mysql --ssl-mode=REQUIRED -u <username> -p -h <host> -P 4002 -A <dbname>
MariaDB CLI
MariaDB’s CLI has slightly different ssl
option with original MySQL
mysql --ssl -u <username> -p -h <host> -P 4002 -A <dbname>
URL
Use following connect string for your JDBC client.
jdbc:mysql://<host>:4002/<dbname>?user=<username>&password=<password>
And if you are using client like Python, use following url to connect to your instance.
mysql://<username>:<password>@<host>:4002/<dbname>
当前内容版权归 GreptimeDB 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 GreptimeDB .