当前位置:   article > 正文

ubuntu安装mysql配置_utuntu设置mysql的trace

utuntu设置mysql的trace

前言:
此处使用的是ubuntu 20
(如何在windows上安装ubuntu,请参考上一篇文章)

打开命令行终端
在这里插入图片描述
cmd终端分别输入(以下黑色背景部分命令)

(1)获取root权限

sudo su
  • 1

输入

apt-get update
  • 1

如果没有显示connection failed,则跳过第(2)步,直接去下第(3)步

(2)配置apt安装包源(默认是外网,无法获取)

获取方式:打开ubuntu浏览器,搜索:

ubuntu20 aliyun sources.list

在这里插入图片描述

cmd打开后,输入下列命令,进行全完文复制粘贴+替换即可:
完成后保存

gedit /etc/apt/sources.list
  • 1

(3)更新apt库

apt-get update
apt-get upgrade
  • 1
  • 2

(4)安装mysql

检查是否安装

mysql
  • 1

安装客户端

apt install mysql-client-core-8.0
  • 1

安装服务端

apt install mysql-server
  • 1

(5)开始使用mysql

mysql
  • 1

在这里插入图片描述
(6)创建简单数据库

mysql  //进入数据库
create database myTestData;  //创建数据库
use myTestData; //使用数据库

create table myTestTable; //创建表格(根据自己需求创建)

create table m_blog
(
    id          bigint auto_increment
        primary key,
    user_id     bigint       not null,
    title       varchar(255) not null,
    description varchar(255) not null,
    content     longtext     null,
    created     datetime     not null on update CURRENT_TIMESTAMP,
    status      tinyint      null
)
    charset = utf8mb4;


INSERT INTO myTestData (id, user_id, title, description, content, created, status) VALUES (15, 1, '标题', '摘要', '数据', '2022-04-12 1:41:00', 0);  
//填充表格数据

show tables; //查看表格

select * from myTestTable;提取表格数据
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/978556
推荐阅读
相关标签
  

闽ICP备14008679号