Creating MySQL/MariaDB database for SSB
You need to create the MySQL/MariaDB dabase that will be used for the Streaming SQL Console.
- Log in as the
root
user to MySQL:mysql -u root -p Enter password:
- Create databases for the Streaming SQL
Console:
CREATE DATABASE ssb_admin DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
- Grant all privileges for the created
database:
GRANT ALL ON ssb_admin.* TO 'ssb_admin'@'%' IDENTIFIED BY '<password>';
- Confirm that you have created the Streaming SQL Console
database:
SHOW DATABASES;