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
3468f23f
Commit
3468f23f
authored
Mar 16, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new item to Access denied
parent
66c039eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
4 deletions
+27
-4
Docs/manual.texi
Docs/manual.texi
+27
-4
No files found.
Docs/manual.texi
View file @
3468f23f
...
...
@@ -13162,6 +13162,28 @@ server with the @code{--skip-grant-tables} option and edit your
@file{/etc/hosts} or @file{\windows\hosts} file to add an entry for your
host.
@item
If you get an error like the following:
@example
shell> mysqladmin -u root -pxxxx ver
Access denied for user: 'root@@localhost' (Using password: YES)
@end example
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.
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}
file. @xref{Option files}. You can avoid using option files with the @code{--no-defaults} option, as follows:
@example
shell> mysqladmin --no-defaults -u root ver
@end example
@item
@cindex @code{mysql_fix_privilege_tables}
If you updated an existing @strong{MySQL} installation from a version earlier
...
...
@@ -13816,11 +13838,12 @@ adopt a consistent convention, such as always creating databases and
tables using lowercase names.
One way to avoid this problem is to start @code{mysqld} with @code{-O
lower_case_table_names=1}.
lower_case_table_names=1}.
In this case @strong{MySQL} will convert all table names to lower case on
storage and lookup. Note that you need to first convert your old table
names to lower case before starting @code{mysqld} with this option.
In this case @strong{MySQL} will on Windows/NT convert all table names
to lower case on storage and lookup. Note that you need to first
convert your old table names to lower case before starting @code{mysqld}
with this option.
@cindex variables, user
@cindex user variables
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