Redhat7 配置http

安装:

# yum install httpd

主配置文件:

/etc/httpd/conf/httpd.conf

log路径:

/var/log/httpd

启动:

# systemctl start httpd

# systemctl enable httpd

开放防火墙:

# firewall-cmd --permanent --add-service=http

其它地址访问该web(selinux):

# setsebool -P httpd_can_network_relay on

对目录设置访问权限:

在<Directory "/var/www/html">里添加

order deny,allow

deny from all

allow 10.0.0.0/24

allow .ming.com   (注:前没*)

allow localhost

:wq

注:allow可以写多行,但不能并排写,域名时前不能带"*"

配置虚拟主机:

多端口:

# vi /etc/httpd/conf/httpd.conf (最后添加)

Listen 81

<VirtualHost *:81>

DocumentRoot "/var/www/html/ming"

</VirtualHost>

:wq

多域名:

# vi /etc/httpd/conf/httpd.conf (最后添加)

<VirtualHost *:80>

ServerName  aa.ming.com

DocumentRoot "/var/www/html/ming2"

</VirtualHost>

:wq

时间: 2024-09-29 22:34:12

Redhat7 配置http的相关文章

redhat7配置阿里云的yum源并安装httpd服务 &nbsp;

1.配置yum源 [base] name=CentOS-$releasever - Base - mirrors.aliyun.com failovermethod=priority baseurl=http://mirrors.aliyun.com/centos/7/os/x86_64/ gpgcheck=1 enabled=1 gpgkey=http://mirrors.aliyun.com/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7 2.更新yum源 y

redhat7 配置使用centos的yum源

新安装了redhat7.安装后,登录系统,使用yum update 更新系统.提示: This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. 无法更新. redhat 默认自带的 yum 源需要注册,才能更新.我们想不花钱也可以更新,需要替换掉redhat的yum源. 1.检查是否安装yum包 查看RHEL是否安装了yum,若是安

RedHat7配置IdM server

IdM服务器是一个集成身份验证服务器. Figure 1.1. The IdM Server: Unifying Services Authentication: Kerberos KDC Kerberos使用对称密钥加密算法生成票据给用户,Kerberos-aware 服务检查票据来验证用户身份. Data Storage: Red Hat Directory Server 目录服务用于存储所有的Kerberos,用户账号,用户组,系统服务,计算机策略,DNS信息以及其他信息. Authent

redhat7配置本地yum源

1.首先是要有一个iso文件,并将这个文件挂载到某个目录 挂载: 配置: 检验: yum list 现在你就可以在没有网的情况下,安装软件了~~~

Redhat-7配置yum源

由于红帽安装时没有输入注册码,故系统自带的yum源时不可用的: 需要进行卸载后安装国内yum源. 1.安装之前要先卸载系统本来的yum源,执行以下命令 [[email protected] ~]# rpm -aq|grep yum|xargs rpm -e --nodeps 注:a.xargs是一条Unix和类Unix操作系统的常用命令.它的作用是将参数列表转换成小块分段传递给其他命令,以避免参数列表过长的问题 b.--nodeps  强制卸载,不管依赖性 2.查询一下是否完全卸载了 [[ema

redhat7配置本地yum、163 yum、epel 源

都知道redhat不收费,但是其yum服务是要收费的,不想出钱那就自己配置yum源就好了. 首先,博主之前也没用过redhat,第一次用yum装包的时候提示什么没注册之类的,balaba一大堆,然后就去网上查相关资料. 但是,看到的最多的就是让把redhat自带的yum全部卸掉,不检查依赖的卸掉,然后再wget安装... 经过请教大神得出正确的做法,一般来说配置3个源就够了: 1.本地yum源,就是你本地的ISO 2.配置163源 3.配置epel源 配置本地yum源 1.创建一个文件夹用来挂载

Redhat7配置vsftpd

安装: # yum installvsftpd ftp (或rpm -i) 启动: #systemctl start vsftpd 开机启动: #systemctl enable vsftpd 查看状态: #systemctl status vsftpd 主要配置文件:/etc/vsftpd/vsftpd.conf Log路径:/var/log/xferlog 防火墙开放服务: #firewall-cmd –permanent –add-service=ftp #firewall-cmd –re

Redhat7配置NFS

安装: # yuminstall nfs-utils  (或rpm -i) 共享/home: # vi/etc/exports /home     10.0.0.3(rw,async,root_squash) :wq 全部参数为:ro,rw,async,sync,root_squash,no_root_squash,all_squash 可为单个ip,可为网段(如:10.0.0.0/24),可为域名(如:*.ming.com) 启动nfs: #systemctl start nfs-server

Redhat7 配置DNS

安装bind软件(略) # cp/etc/named.rfc1912.zones /etc/named.rfc1912.zones.bak # vi/etc/named.rfc1912.zones  (将现有模板改下内容,其余可全删) zone  "ming.com" IN { type master; file "ming.com.zone"; allow-update { none }; }; Zone "2.0.0.10.in-addr.arpa&q