前言
linux常用命令
-
---> cat /etc/redhat-release //查看当前linux版本
-
---> rpm -qa | grep httpd //检测是否安装过httpd
-
---> find / -name 文件名 //查找文件所在的位置
-
--->更换yum源
yum install epel-release
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm -
---> yum -y install lrzsz //文件上传和下载包
-
执行rz //界面会跳出上传的界面
-
--->yum install net-tools.x86_64 //解决ifconfig无效
-
---->centos7 查看防火墙状态 firewall-cmd --state
-
----->停止防火墙systemctl stop firewalld
-
---->centos7 关闭防火墙 sudo systemctl stop firewalld
-
find / -name httpd.conf //查找某个文件
-
chown 修改的所有者 文件名
-
chgrp 所属组名 文件名
-
firewall-cmd --zone=public --add-port=5672/tcp --permanent # 开放5672端口
-
firewall-cmd --zone=public --remove-port=5672/tcp --permanent #关闭5672端
-
firewall-cmd --reload # 配置立即生效
-
netstat -lnpt #查看监听的端口,如果不存在则下载yum install net-tools
-
netstat -aptn //查看所有端口
原文链接:https://blog.csdn.net/slovyz/article/details/50386240 -
netstat -lnpt |grep 5672 检查端口被哪个进程占用
-
cat /etc/redhat-release 查看版本号
-
systemctl enable httpd.service httpd开机自启动
-
chkconfig httpd on //设置软件开机自启动
-
ps -ef //查询当前进程
-
ps -ef | grep php //查看php在执行的进程
-
kill -9 pid //结束某个进程
-
service httpd status //查看httpd运行的情况或启动等相关
-
vi ~/.bash_profile //alias php=目录路径,修改全局下的环境变量修改完成source ~/.bash_profile
经常会出现的错误
- 虚拟机无法ping本地,可能是本地防火墙没有关闭
- 本地浏览器无法访问apache部署的,可能是端口80并没有开放
网友评论