mac安装mysql时会给出一个临时密码 记录下来 2018-03-17T02:14:10.809431Z 1 [Note] A temporary password is generated for root@localhost: tiBVf3f_fC5I If you lose this password, please consult the section How to Reset the Root Password in the MySQL reference manual. 打开终端…
1. 软件准备,以64位系统为例如果是32位的下载32位压缩包即可] https://dev.mysql.com/downloads/mysql/ 2.下载解压到本地,将解压路径的bin目录配置到环境变量path中,配置环境变量的过程就不讲了 3.打开cmd窗口依次执行如下命令[注意以管理员身份运行],初始化和启动数据库,默认会创建一个root账号,密码为空 mysqld -remove mysqld -install mysql -initialize net start mysql 4.链接…
我们可以采用类似安全模式的方法修改初始密码 先执行命令 mysqld_safe --skip-grant-tables & (设置成安全模式) &,表示在后台运行,不再后台运行的话,就再打开一个终端咯. # mysql mysql> use mysql; mysql> update user set authentication_string=password('111111') where user='root' ; (会提示修改成功query ok) mysql>…