ubuntu系统中出现mysql数据库无法启动报错2002该怎么处理,具体报错信息如正文所示

时间:2022-04-17 06:36:40

python@ubuntu:~$ mysql -uroot -pmysql
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

ubuntu系统中出现mysql数据库无法启动报错2002该怎么处理,具体报错信息如正文所示

具体解决办法如下步骤:

由于我的数据库没什么东西,我在各种度娘求助无法解决之后选择卸载mysql(用了好几个命令卸载,下面这个步骤完美解决!)

卸载mysql的终端命令:sudo apt-get autoremove mysql* --purge

ubuntu系统中出现mysql数据库无法启动报错2002该怎么处理,具体报错信息如正文所示

卸载完成查看mysql已经不存在了:

ubuntu系统中出现mysql数据库无法启动报错2002该怎么处理,具体报错信息如正文所示

重新安装Mysql

安装mysql命令:sudo apt-get install mysql-server

ubuntu系统中出现mysql数据库无法启动报错2002该怎么处理,具体报错信息如正文所示

待下载完成查看MySQL安装OK!

ubuntu系统中出现mysql数据库无法启动报错2002该怎么处理,具体报错信息如正文所示