window:MySQL 5.7免安装版安装

1、配置环境变量

2、配置MySQL配置文件

window:MySQL 5.7免安装版安装_第1张图片
my.conf ( Demo )

3、初始化

        以管理员身份运行cmd,进入bin目录

        输入:mysqld -install (如果不用管理员身份运行,将会因为权限不够而出现错误:Install/Remove of the Service Denied!)

        然后输入:mysqld --initialize-insecure --user=mysql (此操作会初始化data文件夹,如果不执行此操作,一般都会无法启动MySql服务)

4、更新密码

        放开 skip-grant-tables , 启动服务(net start mysql

        执行 mysql -u root -p , 还不输入密码直接进入

            update mysql.user set authentication_string=password('root') where user='root' ;

            commit;

注意:

        MySQL报错:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

            解决办法:

                set global read_only=0;、(关掉新主库的只读属性)

                flush privileges;

        注释 skip-grant-tables,停止服务(net stop mysql),重启服务(net start mysql),使用密码正常登陆

你可能感兴趣的:(window:MySQL 5.7免安装版安装)