MariaDB
Connect MariaDB to Wobby
Connect MariaDB to Wobby
1. Create a Read-Only User in MariaDB
-- Replace with your actual database and secure password
CREATE USER 'wobby_user'@'%' IDENTIFIED BY '<your_secure_password>';
-- Grant minimal access to the database
GRANT SELECT ON your_database.* TO 'wobby_user'@'%';
-- Apply changes
FLUSH PRIVILEGES;2. Optional: Enable SSL (Recommended)
3. Set Up the Connection in Wobby
That’s It!
Last updated