centos 7中的mysql中怎么删除创建的数据库

centos 7中的mysql中怎么删除创建的数据库,第1张

yum -y install mariadb-server mariadb mariadb-devel

systemctl start mariadb

systemctl enable mariadb

mysql_secure_installation

firewall-cmd --permanent --add-service mysql

systemctl restart firewalld.service

iptables -L -n|grep 3306

方法2种

直接删除data目录下对应的数据库名称的文件夹下表名文件如tbname.frm等同名3文件,重启mysql服务就没有了;

进入mysql命令行,直接执行

drop table tbname;

就没有了;


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9260806.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-26
下一篇 2023-04-26

发表评论

登录后才能评论

评论列表(0条)

保存