Linux mysql 一些基本命令

1. 启动服务

systemctl start mysqld.service

2.登录mysql

mysql -uroot -p

3.创建一个新的数据库

create database database;

4.创建一个新的用户

create user  'userid'  '@'  'localhost'  identified by 'PW';

 给该用户授权

 grant all on *.* TO ‘userid’@’localhost’ Identified by 'PassWord';权限全开

flush privileges;

你可能感兴趣的:(linux,mysql,运维)