在Ubuntu上启动MySQL时遇到错误
我会记录下当在尝试在Ubuntu 20.04上启动MySQL时遇到错误的解决方法。
首先安装MySQL。
$ sudo apt update
$ sudo apt install mysql-server
我已经确认了版本。
$ mysql --version
mysql Ver 8.0.34-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
MySQLに接続、、っと。エラーが出ました。
$ sudo mysql -u root -p
Enter password:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
そもそも起動していないからか。と思い起動を試みるも、コマンドが見つからんと。
インストールしたはずなのに、おかしい。
$ systemctl mysql start
Unknown operation mysql.
$ sudo mysql.server restart
sudo: mysql.server: command not found
調べていくと、以下の記述を見つけました。
https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-20-04-ja
在运行MySQL 5.7(或更高版本)的Ubuntu系统中,默认情况下,root MySQL用户使用的是auth_socket插件进行身份验证,而不是密码。然而,要使用此插件,需要确保调用MySQL客户端的操作系统用户名与在命令中指定的MySQL用户名匹配,因此需要以sudo权限调用mysql以使root MySQL用户可访问。
$ sudo mysql
哦,原来如此?
总之先试试看了。
$ sudo mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.34-0ubuntu0.20.04.1 (Ubuntu)
Copyright (c) 2000, 2023, Oracle and/or its affiliates.
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>
MySQL已启动。
根据MySQL版本是8,我认为这次是适用于它的。