MySQL Databases: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Some MySQL handy oneliners: * List all users from running instance: SELECT User, Host, Password FROM mysql.user; * Create new user called <code>newuser</code> CREATE USER n...") |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
* Create new user called <code>newuser</code> | * Create new user called <code>newuser</code> | ||
CREATE USER newuser@localhost IDENTIFIED BY 'superstrongpassword'; | CREATE USER newuser@localhost IDENTIFIED BY 'superstrongpassword'; | ||
* Create new UTF-8 database called <code>mydatabase</code> (at time of writing, 20190214, these settings seem to be the best practice for UTF-8 settings, YMMV, update if needed) | |||
CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | |||
* Change the encoding of <code>mydatabase</code> (because some software may not support latest best practices, etc) | |||
ALTER DATABASE mydatabase CHARACTER SET = utf8 COLLATE = utf8_general_ci; | |||
* Give full control of <code>mydatabase</code> to existing <code>newuser</code> | |||
GRANT ALL PRIVILEGES ON mydatabase.* TO newuser@localhost; | |||
FLUSH PRIVILEGES; | |||
[[Category:Database]] | [[Category:Database]] |
Latest revision as of 14:24, 24 February 2019
Some MySQL handy oneliners:
- List all users from running instance:
SELECT User, Host, Password FROM mysql.user;
- Create new user called
newuser
CREATE USER newuser@localhost IDENTIFIED BY 'superstrongpassword';
- Create new UTF-8 database called
mydatabase
(at time of writing, 20190214, these settings seem to be the best practice for UTF-8 settings, YMMV, update if needed)
CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
- Change the encoding of
mydatabase
(because some software may not support latest best practices, etc)
ALTER DATABASE mydatabase CHARACTER SET = utf8 COLLATE = utf8_general_ci;
- Give full control of
mydatabase
to existingnewuser
GRANT ALL PRIVILEGES ON mydatabase.* TO newuser@localhost; FLUSH PRIVILEGES;