摘要: 检查是否安装过 MySQL 以及版本信息 rpm -qa | grep -i mysql # 卸载之前的版本,参数 -e 表示删除,-nodeps 表示不校验依赖关系 rpm -e mysql-5.1.47-4.el6.x86_64 –nodeps 二进制包格式安装的 mysql 卸载 如果我们的 阅读全文
posted @ 2023-06-12 22:31 hyzs 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #### 启动防火墙 ``` systemctl start firewalld ``` #### 关闭防火墙 ``` systemctl stop firewalld ``` #### 查看防火墙状态 ``` systemctl status firewalld ``` #### 开启启用防火墙 阅读全文
posted @ 2023-06-12 22:13 hyzs 阅读(17) 评论(0) 推荐(0) 编辑