MySql升级安装、socket 及密码重置

升级

项目需要使用Mysql8.0, 查看自己的ubuntu22.04上mysql版本为5.7, 使用以下命令自动升级到8.0版本。

复制代码
sudo apt install Mysql

sock错误: Can't connect to local MySQL server through socket

运行mysql -u -p 报以下错误:

复制代码
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysqld.sock'

解决如下: 修改配置文件,增加以下内容:

复制代码
[mysqld]
socket = /tmp/mysqld.sock

[client]
socket = /tmp/mysqld.sock

修改之后 ,重启mysql服务

复制代码
sudo systemctl restart mysql

密码问题: ERROR 1045 (28000): Access denied for user 'root'@'localhost'

忘记密码会提示以下错误,以下是重置mysql密码方法:

复制代码
#执行以下命令,输入密码
mysql -u root -p 
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

#停止服务 
(base) moon@moon:~$ sudo service mysql stop

#跳过密码检查
(base) moon@moon:~$ sudo mysqld_safe --skip-grant-tables &
[1] 27049
(base) moon@moon:~$ 2025-06-19T09:30:30.942961Z mysqld_safe Logging to '/var/log/mysql/error.log'.
2025-06-19T09:30:30.998082Z mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

#进入mysql,
(base) moon@moon:~$ mysql -u root
# 重新设置密码
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'newpassword';
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.06 sec)

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
Query OK, 0 rows affected (0.06 sec)

mysql> quit
Bye

#重启服务 
(base) moon@moon:~$ sudo service mysql restart

#重新进入
base) moon@moon:~$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.36-0ubuntu0.22.04.1 (Ubuntu)

Copyright (c) 2000, 2018, 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> 
相关推荐
飞翔的佩奇2 小时前
基于SpringBoot+MyBatis+MySQL+VUE实现的房屋交易平台管理系统(附源码+数据库+毕业论文+部署教程+配套软件)
数据库·spring boot·mysql·vue·毕业设计·mybatis·房屋交易平台
wb1898 小时前
服务器的Mysql 集群技术
linux·运维·服务器·数据库·笔记·mysql·云计算
鲨鱼辣椒_TUT8 小时前
MySQL连接算法和小表驱动大表的原理
mysql·算法·adb
寒士obj10 小时前
MySQL偏门但基础的面试题集锦
数据库·mysql
唐叔在学习10 小时前
9类主流数据库 - 帮你更好地进行数据库选型!
数据库·redis·mysql·mongodb·nosql·大数据存储
大数据狂人11 小时前
从 Hive 数仓出发,全面剖析 StarRocks、MySQL、HBase 的使用场景与区别
hive·mysql·hbase
小醉你真好11 小时前
Spring Boot + ShardingSphere 分库分表实战
java·spring boot·后端·mysql
the beard12 小时前
MySQL进阶:(第八篇)深入解析InnoDB存储架构
数据库·mysql
我来整一篇13 小时前
[mysql] 深分页优化
java·数据库·mysql
bug总结13 小时前
如何使用 DBeaver 连接 MySQL 数据库
数据库·mysql