linux iptables添加mysql访问

用一个shell脚本添加一个IP的mysql 3306端口到防火墙白名单

#!/bin/bash

chkconfig --level 235 iptables on

iptables -F

iptables -A INPUT -s 127.0.0.1 -p tcp --dport 3306 -j ACCEPT

iptables -A INPUT -s 192.168.0.11 -p tcp --dport 3306 -j ACCEPT

linux iptables添加mysql访问

时间: 2024-10-17 04:04:21

linux iptables添加mysql访问的相关文章

linux Grant 添加 MySql 用户

Grant 添加 MySql 用户 2009-04-03 14:40 我安装的版本: mysql> select version();+------------+| version()   |+------------+| 5.0.22-log |+------------+1 row in set (0.05 sec) 添加用户: mysql> grant select,update,insert,delete on *.* to [email protected] identified b

linux iptables IP限制访问 指定IP访问

又有人攻击服务器了,没有办法又的去防,这里简单介绍一种限制指定IP访问的办法.单个IP的命令是iptables -I INPUT -s 59.151.119.180 -j DROP 封IP段的命令是iptables -I INPUT -s 211.1.0.0/16 -j DROPiptables -I INPUT -s 211.2.0.0/16 -j DROPiptables -I INPUT -s 211.3.0.0/16 -j DROP 封整个段的命令是iptables -I INPUT -

linux下添加mysql用户并授权

-------------------暂停mysqlservice mysqld stop 忘记密码修改流程1,修改mysql配置文件 /etc/my.cnf,在[mysqld]下添加一行skip-grant-tables2, 重启mysql service mysqld restart3, mysql -u root -p不用输入密码就直接进入了mysql mysql修改密码use mysqlupdate user set Password = password('nf123456') whe

linux iptables 添加端口 四条命令即可

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT    添加 80 端口 /etc/rc.d/init.d/iptablessave   保存 /etc/init.d/iptables status  查看状态 /etc/init.d/iptables restart  重启 chkconfig –level 35 iptablesoff   永久关闭

Linux iptables防火墙添加删除端口

一.  Linux 防火墙的启动和关闭1.1 启动命令[[email protected] ~]# service iptables stopFlushing firewall rules:                                   [  OK  ]Setting chains to policy ACCEPT: filter nat                [  OK  ]Unloading iptables modules:                  

iptables 添加80端口后,无法访问网站

服务器被攻击, 攻击情况如下,不断尝试破解密码: 之前的环境: 只通过hosts.allow 和hosts.deny 来限制IP登录,但是仍然出现以上问题. 环境: 服务器服务: devicot postfix  nginx  tomcat 处理方法:外网只能访问 80 端口,不能访问其他端口. 执行方法: http://www.cnblogs.com/JemBai/archive/2009/03/19/1416364.html iptables 添加80端口后,无法访问网站,布布扣,bubuk

Linux下将MySQL服务添加到服务器的系统服务中

Linux下将MySQL服务添加到服务器的系统服务中 Linux环境下将MySQL服务添加到服务器的系统服务中 1.了解MySQL程序路径 MySQL数据目录: /home/mysql/dataMySQL程序目录:/usr/local/mysql5 2.修改MySQL服务启动程序 [[email protected] www.linuxidc.com ~]# vim /usr/local/mysql5/share/mysql/mysql.server46 basedir=/usr/local/m

Linux iptables常用命令

iptables 是 Linux 中重要的访问控制手段,是俗称的 Linux 防火墙系统的重要组成部分.这里记录了iptables 防火墙规则的一些常用的操作指令. 下面的操作以 CentOS 为基础介绍,应该对不同的 Linux 发行版都差不多.在 CentOS 5.x 和 6.x 中,iptables 是默认安装的(如果没有安装,先安装 iptables 即可).如果对 iptables 的工作流程不太了解,可以先读读这篇 iptables 工作流程的通俗理解. 内容目录 基本操作 查看 i

linux安装部署mysql

联系qq:413607496,大家可以互相讨论一下. 1.需要mysql-linux安装包 本次使用mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz进行安装 2.将此安装包上传至linux服务器 上传路径为:/usr/local 3.解压mysql 输入命令:tar zxvf mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz 4.复制mysql到/usr/local/mysql文件夹内(注意mysql-5.7.17-linux-