ubuntu20.04离线安装mysql
时间: 2023-09-30 19:03:20 浏览: 234
以下是在 Ubuntu 20.04 上离线安装 MySQL 的步骤:
1. 下载 MySQL Community Server 的 Debian 包,可以到 MySQL 官网下载:https://dev.mysql.com/downloads/mysql/
2. 将下载的 Debian 包复制到 Ubuntu 系统中的任意目录中,比如 /tmp 目录。
3. 在终端中进入到 Debian 包所在的目录,执行以下命令安装 MySQL:
```
sudo dpkg -i mysql-community-server-<version-number>.deb
```
其中,`<version-number>` 为下载的 MySQL Community Server 的版本号。
4. 安装过程中可能会提示缺少依赖包,可以通过以下命令安装:
```
sudo apt-get install -f
```
这将会自动安装缺少的依赖包。
5. 安装完成后,启动 MySQL 服务:
```
sudo systemctl start mysql
```
6. 设置 MySQL 服务开机自启:
```
sudo systemctl enable mysql
```
7. 登录 MySQL,设置 root 用户密码:
```
sudo mysql -u root
```
然后执行以下 SQL 命令:
```
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
```
其中,`password` 为你要设置的密码。
8. 退出 MySQL:
```
exit
```
现在,你已经成功地在 Ubuntu 20.04 上离线安装了 MySQL。
阅读全文