Linux教程

linux 常用命令

本文主要是介绍linux 常用命令,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

关闭防火墙:systemctl stop firewalld.service
开启防火墙:systemctl start firewalld.service
防火墙状态:systemctl status firewalld.service
查看端口:firewall-cmd --zone=public --list-ports
开启端口:firewall-cmd --zone=public --add-port=80/tcp --permanent
查看端口占用:netstat -anp | grep 8087
启动apache:systemctl start httpd

这篇关于linux 常用命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!