``` - Make a new user besides root to user for ...
# general
d
Copy code
- Make a new user besides root to user for superTokens access
        mysql> CREATE USER 'supertokensadmin'@'localhost' IDENTIFIED BY 'adminpass';
        mysql> GRANT ALL PRIVILEGES ON *.* TO 'supertokensadmin'@'localhost' WITH GRANT OPTION;
        mysql> CREATE USER 'supertokensadmin'@'%' IDENTIFIED BY 'adminpass';
        mysql> GRANT ALL PRIVILEGES ON *.* TO 'supertokensadmin'@'%' WITH GRANT OPTION;