User Tools

Site Tools


mysql_usercreate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
mysql_usercreate [2015/04/02 21:52] – created luke7858mysql_usercreate [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 2: Line 2:
  
 <sxh bash>CREATE USER 'luke'@'x.x.x.x' IDENTIFIED BY 'testpassword';</sxh> <sxh bash>CREATE USER 'luke'@'x.x.x.x' IDENTIFIED BY 'testpassword';</sxh>
 +Use % for wildcard host. Accessible from any locations. E.g 
 +<sxh bash>CREATE USER 'luke'@'%' IDENTIFIED BY 'testpassword';</sxh> 
 +\\
 === Setting user password === === Setting user password ===
  
 <sxh bash>SET PASSWORD FOR 'root'@'localhost'</sxh> <sxh bash>SET PASSWORD FOR 'root'@'localhost'</sxh>
 +\\
 === Deleting a user === === Deleting a user ===
  
 <sxh bash>drop user 'luke'@'x.x.x.x';</sxh> <sxh bash>drop user 'luke'@'x.x.x.x';</sxh>
 +
 +\\
 +\\
 +
 +=== Checking MySQL Password ===
 +Sometimes you forget the password for a user. 
 +This is annoying as hell. You have a list of old passwords but you are able to log in as root
 +You can use the following to confirm if the password is correct:
 +
 +<sxh bash>
 +mysql> select if(password('randompassword')=password, 'YES', 'NO') from mysql.user where user='lukeslinux';
 ++-----------------------------------------------------+
 +| if(password('randompassword')=password, 'YES', 'NO') |
 ++-----------------------------------------------------+
 +| YES                                                 |
 ++-----------------------------------------------------+
 +1 row in set (0.00 sec)
 +</sxh>
mysql_usercreate.1428011540.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki