/usr/local/tomcat/apache-tomcat-7.0.82/bin/startup.sh
/usr/local/tomcat/apache-tomcat-7.0.82/bin/shutdown.sh
shutdown -r now
########################################
service iptables status
service iptables start
service iptables restart
service iptables stop
# /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
# service iptables save
# service iptables restart
或直接修改文件/etc/sysconfig/iptables.
# vi /etc/sysconfig/iptables
-A INPUT -p tcp -m tcp --dport 8080 -j ACCEPT
# service iptables restart
########################################
netstat命令各个参数说明如下:
-t : 指明显示TCP端口
-u : 指明显示UDP端口
-l : 仅显示监听套接字(所谓套接字就是使应用程序能够读写与收发通讯协议(protocol)与资料的程序)
-p : 显示进程标识符和程序名称,每一个套接字/端口都属于一个程序。
-n : 不进行DNS轮询,显示IP(可以加速操作)
netstat -ntlp //查看当前所有tcp端口·
netstat -ntulp |grep 80 //查看所有80端口使用情况·
netstat -an | grep 3306 //查看所有3306端口使用情况·
########################################
netstat -ntlp 查看端口
netstat -ntulp |grep 8080查看8080端口
########################################
########################################
########################################
########################################
########################################
########################################