Skip to content

MySQL

MySQL 是一种流行的服务型数据库,归于 Oracle 旗下,优点是利于多个服务或者多个机子写入,缺点是运维成本、资源消耗。

Ubuntu

Ubuntu 安装 MySQL 。

apt update

apt install mysql-server

MySQL 服务默认占用 3306 端口。

查看版本。

mysql --version

进入交互模式。

mysql
Welcome to the MySQL monitor. Commands end with ; or \g.

...

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

退出交互模式。

exit

或者

quit

Alibaba Cloud Linux

Alibaba Cloud Linux 安装 MySQL 。

dnf install mysql-server

启动服务。

systemctl start mysqld

进入交互模式。

mysql

退出交互模式。

exit

联系 math@baima.site