I needed to create a new MySQL user that would be able to create new users itself and grant permissions to the accounts that it creates. To do so I used the following:
GRANT ALL PRIVILEGES ON *.* TO 'subadmin'@'%' WITH GRANT OPTION;
Red Branch | For Future Reference …
I needed to create a new MySQL user that would be able to create new users itself and grant permissions to the accounts that it creates. To do so I used the following:
GRANT ALL PRIVILEGES ON *.* TO 'subadmin'@'%' WITH GRANT OPTION;