摘要: 临时命令ens33为网卡的名称192.168.1.113 想添加的ip# 开启ip 192.168.1.113ifconfig ens33:1 192.168.1.30 netmask 255.255.255.0 up# 关闭ip 192.168.1.113ifconfig ens192:1 192 阅读全文
posted @ 2021-04-25 23:26 红叶舞秋山2021 阅读(678) 评论(0) 推荐(0) 编辑
摘要: 服务目录:/etc/httpd 主配置文件:/etc/httpd/conf/httpd.conf 网站数据目录:/var/www/html/ 访问日志:/var/log/httpd/access_log 错误日志:/var/log/httpd/error_log 自检:httpd -t Selinu 阅读全文
posted @ 2021-04-25 22:27 红叶舞秋山2021 阅读(502) 评论(0) 推荐(0) 编辑
摘要: CentOS 7.0默认使用的是firewall作为防火墙,将防火墙关闭再试下systemctl stop firewalld.serviceCentos 防火墙启动/重启/终止/端口配置# firewall-cmd --zone=public --add-port=8080/tcp --perma 阅读全文
posted @ 2021-04-25 09:41 红叶舞秋山2021 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 首先检查80商品是否已经开启netstat -an | grep 80 rpm -qa | grep httpd 阅读全文
posted @ 2021-04-25 09:40 红叶舞秋山2021 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 查看/var/log/secure档案后发现端口绑定失败,测试后发现ssh只能绑定到22号端口,否则会被SELinux拒绝,使服务完全不能启动。解决方法:[root@RayServer ~]# vim /etc/ssh/sshd_config找到port项,设置端口为22再让防火墙放行该端口[roo 阅读全文
posted @ 2021-04-25 09:39 红叶舞秋山2021 阅读(1770) 评论(0) 推荐(0) 编辑
摘要: entOS系统自带的chcon工具只能修改文件、目录等的文件类型和策略,无法对端口、消息接口和网络接口等进行管理,semanage能有效胜任SELinux的相关配置工作。安装命令如下: [root@localhost ~]# yum install semanage ******* ******* 阅读全文
posted @ 2021-04-25 09:36 红叶舞秋山2021 阅读(1195) 评论(0) 推荐(0) 编辑
摘要: F2进入bios设置更改硬盘模式为SATA Operation改为ATA,重启计算机正常 阅读全文
posted @ 2021-04-25 09:12 红叶舞秋山2021 阅读(87) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lxwphp/p/9435148.html学习 阅读全文
posted @ 2021-04-25 09:05 红叶舞秋山2021 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 用yum安装apache软件:yum -y install httpd安装完成后,来查看理解yum安装软件的过程和安装路径。 首先理解YUM:基于RPM包管理,能够从指定的服务器 下载RPM包并自动进行安装;并自动处理依赖关系,并一次性安装所有依赖的包避免了手动安装的麻烦(寻找资源、下载;放到指定目 阅读全文
posted @ 2021-04-25 09:04 红叶舞秋山2021 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1 apache安装# yum -yinstall httpd// 安装httpd会自动安装以下的依赖包:aprapr-utilhttpd-toolsmailcap# rpm -qi httpd 2 设置开机启动// 设置为自动启动# systemctl enable httpd.service3 阅读全文
posted @ 2021-04-25 09:03 红叶舞秋山2021 阅读(68) 评论(0) 推荐(0) 编辑
摘要: du -h --max-depth=1 /usr/local/ 阅读全文
posted @ 2021-04-25 09:00 红叶舞秋山2021 阅读(868) 评论(0) 推荐(0) 编辑
摘要: Centos6 使用的是iptables,Centos7 使用的是filewall(-cmd)iptables 用于过滤数据包,属于网络层防火墙。firewall 能够允许哪些服务可用,那些端口可用...属于更高一层的防火墙。 1.firewalld的基本使用启动: systemctl start 阅读全文
posted @ 2021-04-25 08:59 红叶舞秋山2021 阅读(2241) 评论(0) 推荐(0) 编辑