MySql教程

mysql操作

本文主要是介绍mysql操作,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.查看mysql的运行状态

systemctl status mysql.service

 

 2.安装与初始化

https://t.codebug.vip/questions-691282.htm

sudo apt install mysql-server mysql-client #同时安装服务器和客户端
sudo mysql_secure_installation

3.Error: Access denied for user 'root'@'localhost' (using password: YES)

https://blog.csdn.net/wangliyao518/article/details/83011522,根据这个来解决

vim修改只读文件:

按‘a’表示进入插入模式,修改后执行:

:w !sudo tee %

会修改只读文件。

按照如下命令解决了本问题:

vim /etc/mysql/mysql.conf.d/mysqld.cnf
//修改只读文件在最后一行添加 skip-grant-tables,并保存

 service mysql restart//重启服务

mysql -uroot -p//回车可进入mysql

use mysql;
update user set authentication_string=PASSWORD("rootadmin") where user='root';

vim /etc/mysql/mysql.conf.d/mysqld.cnf
//删除添加的最后一行 skip-grant-tables,并保存

service mysql restart
mysql -uroot -prootadmin

退出mysql使用 quit; 命令

4.尝试创建表

create database yourdb;

报错:

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

根据https://blog.csdn.net/memory6364/article/details/82426052解决了:

alter user 'root'@'localhost' identified by '123456';

但要设置一个比较复杂的密码。

 

这篇关于mysql操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!