发布网友 发布时间:2022-04-23 04:15
共5个回答
懂视网 时间:2022-05-05 02:18
注意: 1、需要确定的端口是否存在: semanageport-l|grephttp,如果http_port_t后面有需要用到的端口,则需要确定该端口是否被占用:semanageport-l|grephttp81,如果被占用,则需要添加额外的端口: semanageport-a-thttp_port_t-ptcp82 ; 2、用到的端口
注意:
1、需要确定的端口是否存在:
semanage port -l | grep http,如果http_port_t 后面有需要用到的端口,则需要确定该端口是否被占用:semanage port -l | grep http 81,如果被占用,则需要添加额外的端口:semanage port -a -t http_port_t -p tcp 82;
2、用到的端口需要先在防火墙中添加,否则只能用内网访问到挂载的站点;
vim /etc/sysconfig/iptables
在里面加入:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8888 -j ACCEPT
重启防火墙服务:service iptables restart
1、基于同一个IP、多端口的虚拟主机配置:
Listen 80
Listen 8888
ServerName localhsot
NameVirtualHost *:80
DocumentRoot /var/www/example1
ServerName www.example1.com
ErrorLog logs/example1-error_log
CustomLog logs/example1-access_log common
NameVirtualHost *:8888
DocumentRoot /var/www/example2
ServerName www.example2.com
ErrorLog logs/example2-error_log
CustomLog logs/example2-access_log common
ServerName需要注册,否则无效!
3、用vim打开httpd.conf文件时,提示输入密码,如果不输入密码直接按enter也可以进入文件,但是显示的是乱码,在网上扒了很久,没有找到问题的解决方法,最后被迫把配置文件重新弄了一遍,教训:做好数据的备份!
热心网友 时间:2022-05-04 23:26
CentOS 7下Apache HTTP Server安装配置。
RPM安装httpd
# yum -yinstall httpd
//安装httpd会自动安装一下依赖包:
apr
apr-util
httpd-tools
mailcap
# rpm -qi httpd
Name : httpd
Version : 2.4.6
Release : 18.el7.centos
Architecture: x86_
Install Date: Mon 11 Aug 2014 02:44:55 PMCST
Group : System Environment/Daemons
Size : 9793373
License : ASL 2.0
Signature : RSA/SHA256, Wed 23 Jul 2014 11:21:22 PM CST, Key ID 24c6a8a7f4a80eb5
Source RPM : httpd-2.4.6-18.el7.centos.src.rpm
Build Date : Wed 23 Jul 2014 10:49:10 PM CST
Build Host : worker1.bsys.centos.org
Relocations : (not relocatable)
Packager : CentOS BuildSystem <http://bugs.centos.org>
Vendor : CentOS
URL : http://httpd.apache.org/
Summary : Apache HTTP Server
Description :
The Apache HTTP Server is a powerful,efficient, and extensible web server.
修改配置文件
# cd
/etc/httpd/conf
# ls
httpd.conf
magic
#cp httpd.conf httpd.conf.origin //将原有配置文件备份
# more httpd.conf
//查看配置文件,我们注意到以一配置:
DocumentRoot"/var/www/html"
//特别是要注意这个配置
//这是Apache 2.4的一个新的默认值,拒绝所有的请求!
<Directory />
AllowOverride none
Require all denied
</Directory>
//设置为自动启动
# systemctl enable httpd.service
ln -s'/usr/lib/systemd/system/httpd.service' '/etc/systemd/system/multi-user.target.wants/httpd.service'
//在centos7中chkconfig httpd on 被替换成 systemctl enable httpd
配置WEB站点 (假设使用/wwwroot目录下的文档)
//创建两个网站的目录结构及测试用页面文件
# mkdir/wwwroot/www
# echo"www.linuxidc.local" > /wwwroot/www/index.html
# mkdir/wwwroot/crm
# echo"crm.linuxidc.local" > /wwwroot/crm/index.html
//配置虚拟机主机
# cd/etc/httpd/
# mkdirvhost-conf.d
# echo"Include vhost-conf.d/*.conf" >> conf/httpd.conf
# vi/etc/httpd/vhost-conf.d/vhost-name.conf
//添加如下内容
<VirtualHost *:80>
ServerNamewww.linuxidc.local
DocumentRoot /wwwroot/www/
</VirtualHost>
<Directory /wwwroot/www/>
Requireall granted
</Directory>
<VirtualHost *:80>
ServerNamecrm.linuxidc.local
DocumentRoot /wwwroot/crm/
</VirtualHost>
<Directory /wwwroot/crm/>
Require ip192.168.188.0/24 //可以设置访问*
</Directory>
---------------------------
答案补充:http://blog.chinaunix.net/uid-22414998-id-113380.html
望楼主采纳。
热心网友 时间:2022-05-05 00:44
具体通过yum安装以及配置网上有数不尽的教程和说明,我建议如果楼主不着急的话就学着用源码编译安装,遇到编译失败需要依赖的就手动到各个网站下载需要的依赖包源码并编译安装,刚开始学习确实有点痛苦,时间长了熟能生巧也会对源码安装有一定的了解,比如./configure make make install啥的,到时候只要有源码包就算没有网络也可以快速安装。多注意源码包里面的README 等文档,里面一般都有详细的安装说明。
热心网友 时间:2022-05-05 02:19
yum install http*
热心网友 时间:2022-05-05 04:10
http://centos7.net/forum.php?mod=viewthread&tid=1&extra=page%3D1来自:求助得到的回答