当前位置:   article > 正文

ubuntu 启动停止 mysql_ubuntu停止mysql服务

ubuntu停止mysql服务

ubuntu 启动停止 mysql

1. 安装mysql

sudo apt update
sudo apt install mysql-server
  • 1
  • 2

2. 检查mysql是否安装

mysql --version
  • 1

出现类似这样的代表正确安装

Server version: 8.0.33-0ubuntu0.20.04.2 (Ubuntu)
  • 1

3. 启动mysql

使用如下两个命令可启动mysql

sudo service mysql start
sudo systemctl start mysql
  • 1
  • 2

可能会让输入密码,输入即可

4. 检查mysql服务状态

使用如下两个命令可检查服务状态

sudo service mysql status
sudo systemctl status mysql
  • 1
  • 2

出现如下代表正确启动

Jul 28 05:32:12 ubuntu systemd[1]: Starting MySQL Community Server...
Jul 28 05:32:15 ubuntu systemd[1]: Started MySQL Community Server.
  • 1
  • 2

否则重复3

5. 登录mysql

sudo mysql
  • 1

出现如下为正确启动

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.33-0ubuntu0.20.04.2 (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> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

6. 查看数据库

SHOW DATABASES;
  • 1

7. 创建数据库

CREATE DATABASE mydb1;
  • 1

默认字符集的方式创建了mydb1的数据库

8. 选择数据库

USE mydb1;
  • 1

使用mydb1这个数据库

9. 查看表

SHOW TABLES;
  • 1

10. 退出数据库

quit;
  • 1

11. 关闭服务

用其中一个

sudo service mysql stop
sudo systemctl stop mysql
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/187923
推荐阅读
相关标签
  

闽ICP备14008679号