Configuring the MariaDB Jupyter Kernel
The MariaDB Jupyter Kernel reads connection settings from a JSON config file, supporting options for host, port, credentials, server binary paths, and auto-start behavior.
Config File Location
Config Example
cat ~/.jupyter/mariadb_config.json
{
"user": "root",
"host": "localhost",
"port": "3306",
"password": "securepassword",
"start_server": "True",
"client_bin": "/usr/bin/mariadb",
"server_bin": "/usr/bin/mariadbd"
}The Full List of JSON Options
Option
Default
Explanation
Last updated
Was this helpful?

