Skip to content

Instantly share code, notes, and snippets.

@mthabsheer
Last active November 25, 2021 07:33
Show Gist options
  • Save mthabsheer/a64c374b42f0bd4894ef25e614e07843 to your computer and use it in GitHub Desktop.
Save mthabsheer/a64c374b42f0bd4894ef25e614e07843 to your computer and use it in GitHub Desktop.
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
GRANT select ON dbname.* TO 'newuser'@'%'; //read only access
FLUSH PRIVILEGES;
apt-get install phpmyadmin php-mbstring php-gettext
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment