redhat7.6

以下是为您整理出来关于【redhat7.6】合集内容,如果觉得还不错,请帮忙转发推荐。

【redhat7.6】技术教程文章

redhat7.6 httpd配置php模块【图】

1.安装phpyum install "*php*" -y 2.编辑httpd.conf配置文件找到LoadModule foo_module modules/mod_foo.so 在下面添加LoadModule php5_module modules/libphp5.so找到AddType添加AddType application/x-httpd-php .phpAddType application/x-httpd-php-source .phps 重启服务 3.找到httpd.conf配置文件添加index.php重启服务 4.访问测试创建index.php文件添加内容<?php   phpinfo();?> 直接访问域名,能看到ph...

RedHat7.6系统搭建PXE Server【代码】

简单PXE搭建笔记 1、安装RedHat7.6系统 1.1、关闭防火墙,disable SeLinux systemctl stop firewalld chkconfig firewalld off vim /etc/sysconfig/selinux 修改SELINUX=disabled 1.2、配置yum源 vim /etc/yum.conf 或 vim /etc/yum.repos.d/rhel7.repo 在最后添加 [rhel7] name=RHEL7 baseurl=file:///mnt 或 baseurl=ftp://IP/PXE端系统软件包的路径 enabled=1 gpgcheck=0 yum update yum install 软件包 安装软件 1.3、安装需要...

Redhat7.6安装nginx简单总结【代码】【图】

安装nginx 参考https://blog.csdn.net/yyhcsfy/article/details/78980968博文 首先确保有yum包 我制作的是本地yum源 挂载系统镜像文件 在安装过程中,遇到两个问题 1.在执行到pcre库安装失败,因此更换命令安装:yum install -y pcre-devel2.下载nginx源码包 解压后 进入目录只需执行 ./configure --with-http_stub_status_module --with-path=/home/meng/install/nginx–with-http_stub_status_module(监控模块) 安装之前可以先执...

redhat7.6 httpd配置php模块【图】

1.安装php yum install "*php*" -y 2.编辑httpd.conf配置文件 找到LoadModule foo_module modules/mod_foo.so 在下面添加 LoadModule php5_module modules/libphp5.so找到AddType 添加 AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps 重启服务 3.找到httpd.conf配置文件 添加 index.php 重启服务 4.访问测试 创建index.php文件添加内容 <?php phpinfo(); ?> 直接访...