mysql默认密码设置如下命令就可以获得:
cd/
PATH="$PATH":/usr/local/mysql/bin
mysql -u root -p
mysql>use mysql
mysql>UPDATE user SET password=PASSWORD("new password") WHERE user='username'
mysql>FLUSH PRIVILEGES
mysql>quit
within the directory the archive extracted into. If you compiled
MySQL yourself you must run ‘make install’ first.
就可以获得MySQL的初始密码。
扩展资料:
mysql的其他错误解决办法:
1、Starting MySQL.Manager of pid-file quit without updating fi[失败]
关于这个错误原因有很多,最大的可能是没有创建测试数据库:
可以用/usr/local/mysql/scripts/mysql_install_db –user=mysql命令进行创建;另外一个原因可能是权限设置问题,需要赋予mysql的data权限,可以用chmod -R 命令。
2、FATAL ERROR: Could not find /home/mysql/bin/my_print_defaults If you are using a binary release,you must run this script from
within the directory the archive extracted into. If you compiled
MySQL yourself you must run ‘make install’ first.
这个错误,是没有指明mysql的data路径导致的,可以很简单的进行解决:
vim /etc/my.cnf
在[mysqld] 后面加上路径:
basedir = /usr/local/mysql
datadir =/opt/data;
3、-bash: mysql: command not found:
用mysql命令进行登陆mysql报错,原因是没有设置环境变量,需要设置,或者进入到bin目录进行登陆cd /usr/local/mysql/bin
mysql -u root
参考资料来源:百度百科-mySQL
初始化数据库
# 初始化数据库, 确保 /data/mysql 目录是mysql 可写的。
/usr/local/mysql57/bin/mysqld --defaults-file=/etc/my.cnf --initialize --user=mysql
启动服务
/usr/local/mysql57/support-files/mysql.server start #启动mysql 服务器
登录数据库
注意:初始化时随机生成了密码,可以去/mysql下的mysql.log 里查看
【root】# cat mysql.log | grep password
2021-05-12T06:28:43.374399Z 1 [Note] A temporary password is generated for root@localhost: dHuSP!y.3ef
#临时密码登录数据库 (会提示要你修改密码)《Linux就该这么学》 一起学习
/usr/local/mysql57/bin/mysql -uroot -p "dHuSP!y.3ef"
修改密码方法:(建议方法二)
方法一:
mysql>update mysql.user set authentication_string=password("新密码")
mysql>flush privileges
方法二:
mysql>ALTER USER 'root'@'localhost' IDENTIFIED BY '新密码'
mysql>flush privileges
免密登录,置空密码(authentication_string或者password)
恢复配置文件(注释掉或者删掉 skip-grant-tables),重启mysql服务
重新免密登录,修改密码(authentication_string或者password)
验证结果,输入刚刚的密码登录
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)