; 创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
4、以管理员身份运行cmd并进入到mysql的bin目录,输入mysqld install命令进行安装,安装成功后输入命令mysqld --initialize进行初始化,由于它是自动读取my.ini配置,所以运行命令后会在根目录下自动生成data目录,最后输入命令net start mysql启动mysql服务
5、配置环境变量
将mysql的bin目录路径加入到系统环境变量中,这样以后在cmd下就能直接执行mysql命令了
6、设置root管理员密码
关闭mysql服务,打开一个cmd窗口输入 mysqld --skip-grant-tables
再开启另外一个cmd窗口
C:\Users\Administrator>mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.19 MySQL Community Server (GPL) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> use mysql Database changed mysql> update user set authentication_string=password('123456') where user='root'; Query OK, 1 row affected, 1 warning (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 1完成后启动mysql服务
7、用 mysql -uroot -p123456 命令登录测试成功,如下图
以上就是mysql如何进行解压式安装的详细内容!
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did93166
mysql如何进行解压式安装
阅读:54次