那是在LINUX下的命令,换成WINDOWS下的就可以了。
到WINDOWS的命令行了(‘DOS’ 下),切换到你的MySQL bin目录下。 比如我的是 C:\Program Files\MySQL\MySQL Server 5.1\bin
然后敲下面的粗体的命令。注意你的my.ini位置。
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqld --defaults-file="C:\Program
Files\MySQL\MySQL Server 5.1\my.ini" --console --skip-grant-tables
090515 22:06:09 [Warning] The syntax '--log' is deprecated and will be removed i
n MySQL 7.0. Please use '--general_log'/'--general_log_file' instead.
090515 22:06:09 [Warning] The syntax '--log_slow_queries' is deprecated and will
be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file'
instead.
090515 22:06:09 [Warning] The syntax '--log' is deprecated and will be removed i
n MySQL 7.0. Please use '--general_log'/'--general_log_file' instead.
090515 22:06:09 [Warning] The syntax '--log_slow_queries' is deprecated and will
be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file'
instead.
090515 22:06:09 [ERROR] The update log is no longer supported by MySQL in versio
n 5.0 and above. It is replaced by the binary log. Now starting MySQL with --log
-bin='' instead.
090515 22:06:09 InnoDB: Started; log sequence number 0 324221
090515 22:06:09 [Note] mysqld: ready for connections.
Version: '5.1.33-community-log' socket: '' port: 3306 MySQL Community Server
(GPL)
看到这个结果就说明MySQL已经起来了。
再开一个DOS窗口,同样切到mysql bin目录下,
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysql -uroot mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.33-community-log MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
mysql> select user,host from mysql.user;
+---------+-----------+
| user | host |
+---------+-----------+
| M1234 | % |
....
| root | localhost |
+---------+-----------+
4 rows in set (0.00 sec)
mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;
mysql> FLUSH PRIVILEGES;
mysql> quit
c:> mysql -uroot -p
Enter password: <输入新设的密码newpassword>
==========================================================
---------->这个可以通过命令select * from mysql.user看出,mysql.user表里存的是所有连接mysql的用户,你的mysql默认用户肯定在里面的,然后用update语句就可以更改你想更改密码用户名了。
我用了网上说的改密码的方式,但是我的用户名是什么我都忘了。
————— 》解决方法同上
mysql有没有一种方式可以不用用户名就登陆?
----------》我觉得你是想在命令行登录的时候不要输入用户名和密码,单纯的不要用户名是不可能的,只是说mysql登录有默认的用户名(root可改),让你感觉登录的时候跟没有用户名的样,实现方法:你可以把用户名和密码加到mysql启动的配置文件中,linux是在/etc/my.cnf
这个文件里写入
[client]
password = yourpassword
windows是在C:\Program Files\MySQL\MySQL Server 5.0\my.ini文件里加
[client]
password = yourpassword
这样你就可以在命令行直接登录而不用输入密码了,直接输入mysql命令就可以登录了
再提供个链接给你http://blog.youkuaiyun.com/inbyte/archive/2009/06/09/4254130.aspx
mysql>
|