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;
就没有了;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)