1,基于apache的web服务器基础搭建:
(1)实验环境:一台ip为192.168.10.10的rhel5.9主机作为web服务器,一台ip为192.168.10.15的win7主机作为测试机
(2)查看服务主机软件是否安装
[root@ser1 ~]# rpm -q httpd httpd-manual httpd-devel
package httpd is not installed
package httpd-manual is not installed
package httpd-devel is not installed
(3)安装软件包
[root@ser1 ~]# yum install -y httpd httpd-manual httpd-devel
(4)启动服务
[root@ser1 ~]# service httpd start
启动httpd: [确定]
[root@ser1 ~]# chkconfig httpd on
(5)在win7上测试,无网页缺省下显示红帽测试页
<报错页面存放位置/var/www/error/noindex.html>
(6)打开配置文件
[root@ser1 ~]# vim /etc/httpd/conf/httpd.conf
可获得以下重要字段:
目录设置:
<Directory 目录>.. .. </Directory>
访问位置设置:
<LocationURL>.. .. </Location>
虚拟主机设置:
<VirtualHost 监听地址>.. .. </VirtualHost>
常用的全局设置参数:
ServerName本站点的FQDN名称
DocumentRoot网页文档的根目录:缺省/var/www/html/
DirectoryIndex默认索引页/首页文件:一般设为index.html index.php
ErrorLog错误日志文件的位置
CustomLog 访问日志文件的位置
Listen 监听服务的IP地址、端口号
ServerRoot 服务目录:/etc/httpd/
Timeout网络连接超时,默认 300 秒
KeepAlive是否保持连接,可选On或Off
MaxKeepAliveRequests每次连接最多处理的请求数
KeepAliveTimeout保持连接的超时时限
Include 可包含其他子配置文件: /etc/httpd/conf.d/
(7)创建测试网页
[root@ser1 ~]# vim /var/www/html/index.html
<h1>
This is a test page !!!
</h1>
~
(8)win7下测试,主页变为测试网页
无盘(GRUB)安装这节讨论的话题假设你已经安装了红帽企业版Linux、使用GRUB作为你的引导程序,同时假设你是Linux高级用户。
在这一小节中,我们使用GRUB引导程序启动安装进程。
3.1 启动文件
没有光盘与PXE服务器启动安装程序时,你的系统必须要有两个文件放在本地,一个内核与一个初始化RAM盘。
拷贝红帽企业版Linux DVD 中的vmlinuz和initrd.img到/boot目录下,并重命名为vmlinuz-install、initrd.img-install。
你需要有root权限才可以写文件至/boot/目录。
3.2 修改GRUB配置文件
GRUB引导程序的配置文件在/boot/grub/grub.conf。修改该文件,添加一段引导信息:
title Installation
root (hd0,0)
kernel /vmlinuz-install
initrd /initrd.img-install 你也许会希望在kernel行末尾添加选项,可以使用的选项在上面已经讲解,下面这些选项一般会比较有用:
*ip=
*repo=
*lang=
*keymap=
*ksdevice=
*vnc、vncpassword=
最后,在/boot/grub/grub.conf中修改defualt选项指定按新的引导信息启动。
3.3 启动安装程序
重启系统,GRUB引导安装程序kernel与RAM disk(包括任何设置的任何选项)。
四、准备服务器(启动与安装服务器)
以下是准备以PXE方式安装系统所必须的步骤:
# 配置网络服务(NFS,FTP,HTTP,HTTPS)发布安装树(安装光盘)
# 在tftp上配置PXE启动所必须的文件
# 配置允许哪些主机可以使用PXE配置文件启动
# 启动tftp服务
# 配置DHCP服务
# 启动客户端,安装系统
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)