Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
47916ef8
Commit
47916ef8
authored
Jun 19, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Serious rewrite of the "reset forgotten password" section.
parent
b320811a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
20 deletions
+45
-20
Docs/manual.texi
Docs/manual.texi
+45
-20
No files found.
Docs/manual.texi
View file @
47916ef8
...
...
@@ -16173,8 +16173,8 @@ Access denied for user: 'root@@localhost' (Using password: YES)
It means that you are using a wrong password. @xref{Passwords}.
If you have forgot the root password, you can restart @code{mysqld} with
@code{--skip-grant-tables} to change the password.
You can find more
about this option later on in this manual section
.
@code{--skip-grant-tables} to change the password.
@xref{Resetting permissions}
.
If you get the above error even if you haven't specified a password,
this means that you a wrong password in some @code{my.ini}
...
...
@@ -47135,7 +47135,7 @@ with a zero.
@menu
* Crashing:: What To Do If MySQL Keeps Crashing
* Resetting permissions:: How to Reset a Forgotten Password
* Resetting permissions:: How to Reset a Forgotten
Root
Password
* Full disk:: How MySQL Handles a Full Disk
* Temporary files:: Where MySQL Stores Temporary Files
* Problems with mysql.sock:: How to Protect @file{/tmp/mysql.sock} from Being Deleted
...
...
@@ -47331,43 +47331,68 @@ it helps!
@node Resetting permissions, Full disk, Crashing, Administration Issues
@appendixsubsec How to Reset a Forgotten Password
@appendixsubsec How to Reset a Forgotten
Root
Password
@cindex passwords, forgotten
@cindex passwords, resetting
@cindex root user, password resetting
If you have forgotten the @code{root} user password for MySQL, you
can restore it with the following procedure:
If you never set a @code{root} password for MySQL, then the server will
not require a password at all for connecting as @code{root}. It is
recommended to always set a password for each user. @xref{Security}.
If you have set a @code{root} password, but forgot what it was, you can
set a new password with the following procedure:
@enumerate
@item
Take down the @code{mysqld} server by sending a @code{kill} (not @code{kill
-9}) to the @code{mysqld} server. The pid is stored in a @file{.pid}
file, which is normally in the MySQL database directory:
@example
kill `cat /mysql-data-directory/hostname.pid`
shell>
kill `cat /mysql-data-directory/hostname.pid`
@end example
You must be either the Unix @code{root} user or the same user the server
You must be either the Unix @code{root} user or the same user @code{mysqld}
runs as to do this.
@item
Restart @code{mysqld} with the @code{--skip-grant-tables} option.
@item
Connect to the @code{mysqld} server with @code{mysql -h hostname mysql} and change
the password with a @code{GRANT} command. @xref{GRANT,,@code{GRANT}}.
You can also do this with
@
code{mysqladmin -h hostname -u user password 'new password'}
Set a new password with the @code{mysqladmin password} command:
@example
shell> mysqladmin -u root password 'mynewpassword'
@
end example
@item
Load the privilege tables with: @code{mysqladmin -h hostname
flush-privileges} or with the SQL command @code{FLUSH PRIVILEGES}.
Now you can either stop @code{mysqld} and restart it normally,
or just load the privilege tables with:
@example
shell> mysqladmin -h hostname flush-privileges
@end example
@item
After this, you should be able to connect using the new password.
@end enumerate
Note that after you started @code{mysqld} with @code{--skip-grant-tables},
any usage of @code{GRANT} commands will give you an @code{Unknown command}
error until you have executed @code{FLUSH PRIVILEGES}.
Alternatively, you can set the new password using the @code{mysql} client:
@enumerate
@item
Take down and restart @code{mysqld} with the @code{--skip-grant-tables}
option as described above.
@item
Connect to the @code{mysqld} server with:
@example
shell> mysql -u root mysql
@end example
@item
Issue the following commands in the @code{mysql} client:
@example
mysql> UPDATE user SET Password=PASSWORD('mynewpassword')
-> WHERE User='root';
mysql> FLUSH PRIVILEGES;
@end example
@item
After this, you should be able to connect using the new password.
@item
You can now stop @code{mysqld} and restart it normally.
@end enumerate
@node Full disk, Temporary files, Resetting permissions, Administration Issues
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment