MySQL and Postgres user management
Creating a User / Role Mysql: mysql> GRANT ALL PRIVILEGES ON dbname.* TO ‘dbuser’@’%’ IDENTIFIED BY ‘dbpass’; (The above grants full access to the named database to the named user connecting from any host on the internet identifying using the given password. If granting privileges this way, it’s important to …