MySQL-5.7.12-winx64.zip解压安装方式
1、解压文件到你想要安装的位置。
本人是直接解压到E盘。
2、配置环境变量,在path中放入:E:\mysql-5.7.12-winx64\bin;
3、在E:\mysql-5.7.12-winx64中,新建my.ini,对mysql进行配置。
配置内容可为:
---------------------------------------------------------------------------------------------------------
[client]
port=3306
default-character-set=utf8
[mysqld]
port=3306
character_set_server=utf8
#解压目录
basedir=E:\mysql-5.7.12-winx64
#解压目录下data目录
datadir=E:\mysql-5.7.12-winx64\data
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
----------------------------------------------------------------------------------------------------------
4、进入命令窗口
cd E:\mysql-5.7.12-winx64\bin (如果命令可以直接执行,不需要进入bin目录)
命令:mysqld --initialize #直接初始化mysql,生成data文件夹中的文件。
命令:mysqld -install #安装mysql
命令:net start mysql #启动服务器
以下是mysql的一些命令:
#命令:mysqld --console #控制台
命令:net stop mysql #关闭服务器
命令: mysqld -remove #卸载mysql
5、登陆
此时用mysql -uroot -p登录时,不知道密码,按以下步骤设置密码。
1)编辑mysql配置文件my.ini(E:\mysql-5.7.12-winx64),在[mysqld]这个条目下加入
skip-grant-tables
保存退出后重启mysql
如过上述方法不行的话请按照下述方法执行:
以管理员身份进入Mysql的安装目录的bin下面运行如下语句:
mysqld --defaults-file="H:\JavaSoftwares\MySql\mysql-5.7.16-winx64\my-default.ini" --console --skip-grant-tables
其中H:\JavaSoftwares\MySql\mysql-5.7.16-winx64\my-default.ini指的是你的mysql安装目录下的my-default.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>
到这,你就继续按 方法一:(2)给root用户设置新密码,蓝色部分自己输入:继续执行就可以了!
① 点击“开始”->“运行”(快捷键Win+R)。
② 停止:输入 net stop mysql
③ 启动:输入net start mysql
这时候在cmd里面输入mysql -u root -p就可以不用密码登录了,出现password:的时候直接回车可以进入。
(1)进入mysql数据库:
mysql> use mysql;
Database changed
(2)给root用户设置新密码,蓝色部分自己输入:
mysql> (版本5.5)update user set password=password("新密码") where user="root";
(版本5.7)update user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';
Query OK, 1 rows affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
(3)刷新数据库
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
(4)退出mysql:
mysql> quit
Bye
改好之后,再修改一下my.ini这个文件,把我们刚才加入的"skip-grant-tables"这行删除,保存退出再重启mysql就可以了。
修改完毕。重启mysql服务。
登录:mysql -uroot -p123qwe
mysql就可以连接了
但此时操作似乎功能不完全,还要alter user…
mysql> alter user 'root'@'localhost' identified by '123';
这样也可以:
mysql> set password for 'root'@'localhost'=password('123');
然后:
mysql>quit;
登录:
Mysql -uroot -p123 就可以直接登录。