redhat 7.6

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

【redhat 7.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...

在RedHat 7.6上安装SAP ERP/BW【代码】

安装SAP在REHL76 系统要按SAP官网的说明配置1. limits 配置cat /etc/security/limits.conf|grep -v ^#|grep -v ^$: * soft core 65536 * hard rss 65536 * hard nproc 65536 * soft nproc 65536 oradev soft nproc 65536 oradev hard nproc 65536 oradev ...

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(监控模块) 安装之前可以先执...

redhat 7.6 iptables 配置【图】

1.查看iptables默认表(filter) iptables -L -n 2.iptables 默认内链(filter)表三种: INPUT:处理进入防火墙的数据包 FORWARD:源自其他计算机,不接受到防火墙,而是转发(路由) OUTPUT:处理防火墙发出的数据包 3.添加规则,拒绝icmp协议数据包 iptables -A INPUT -p icmp -j DROP //-A [策略] -p [协议] -j [动作](DROP丢弃、ACCEPT允许、REJECT拒绝) 这里是删除刚才添加的规则 iptables -D INPUT 5 ...

Redhat_7.6_RHCE-IPTABLES【图】

iptables**** 注意:1、iptables 默认:ACCEPT 2、注意方向 [root@10 /]# iptables -nvL OUTPUT --line //查看out方向的规则[root@10 /]# iptables -L OUTPUT [root@10 /]# iptables -L INPUT INPUT 方向 [root@10 /]# iptables -L OUTPUT[root@10 /]# iptables -L OUTPUT --line[root@10 /]# iptables -D OUTPUT 1 [root@10 /]# iptables -A INPUT -s 192.168.10.20 -j DROP[root@10 /]# iptables -vnL INPUT --line [ro...

Redhat 7.6配置本地iso yum源【图】

Redhat 企业版之后开始收费需要购买授权注册,执行yum命令一直会提示你Loaded plugins: product-id, refresh-packagekit, security, subscription-manager 解决此问题,1.要么删除redhat 自带yum源 安装其他的源,2.挂载本地ios 启用本地yum源。方式1网上搜索一下一大把。我这里安装挂载ios启用本地源。 虚机本地挂载ios安装镜像。 挂载本地ios镜像之后去系统配置 登录到Linux redhat 7.6 配置 /mnt [root@localhost mnt]# mkd...

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(); ?> 直接访...

[转帖]redhat7.6Linux安装Oracle19C完整版教程【代码】【图】

www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 这个地址挺好的. https://www.cnblogs.com/xuzhaoyang/p/11264557.html 首先安装配置虚拟机,见博客https://www.cnblogs.com/xuzhaoyang/p/11264563.html 然后配置IP地址,见博客https://www.cnblogs.com/xuzhaoyang/p/11264573.html 配置本地的yum源,见博客https://www.cnblogs.com/xuzhaoyang/p/11264584.html 接下来,如果选在在外部Xshell链接...

REDHAT - 相关标签