Search
 
SCRIPT & CODE EXAMPLE
 

SQL

close external port 3306 with iptables

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

close external port 3306 with iptables

iptables -D INPUT -p tcp --dport 3306 -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
iptables -D INPUT -p tcp --dport 3306 -j DROP
Comment

PREVIOUS NEXT
Code Example
Sql :: make parameters nullable in sql server 
Sql :: max length found in mysql 
Sql :: sql group by 
Sql :: Oracle filter date column by year 
Sql :: import database mysql command line 
Sql :: order by sql query 
Sql :: date in mysql 
Sql :: sql insert exemplo 
Sql :: Create table with JSON column SQL Server 
Sql :: date less than in sql 
Sql :: mysql like 
Sql :: mysql update 
Sql :: timestamp datatype in sql 
Sql :: sqlalchemy case insensitive like 
Sql :: having clause in sql 
Sql :: how to get information about data types in postgreSQL 
Sql :: SQL Server Splitting a string column into multiple rows, while repeating ID column 
Sql :: como hacer un select entre fechas mysql 
Sql :: get last record deluge 
Sql :: mysql get 2nd value in comma separated list 
Sql :: mysqli_free_result 
Sql :: show sql property syntax for jpa. 
Sql :: compression of dabatase mysqldumo 
Sql :: alter database datafile maxsize 32g 
Sql :: mysql uuid 
Sql :: codeigniter dbforge add index 
Sql :: List MySQL Table and Index Size 
Sql :: postgresql show tables 
Sql :: open cursors in oracle 
Sql :: clone row from another table mysql 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =