rhel5.5 三、httpd服务的配置

一、设置ip,我基于之前的dns的地址与域名(www.lingling.com 与 12.12.1.1)

二、挂载镜像

       mount /dev/cdrom /mnt

       cd /mnt/Server

三、安装httpd的软件包(默认安装了的)

       rpm -ivh httpd-

       rpm -qa | grep  httpd  #查询是否安装httpd服务包

四、修改httpd的文件

        vim /etc/httpd/conf/httpd.conf

        (基于DNS的域名解析才用域名,没DNS服务器就改为IP地址为 ServerName 12.12.1.1)

         ----位于第265行

rhel5.5 三、httpd服务的配置_第1张图片

五、编辑网页

       echo "hello word" > /var/www/html/index.html

六、重启服务

       service httpd start

七、前往浏览器验证是否成功

rhel5.5 三、httpd服务的配置_第2张图片

 

你可能感兴趣的:(linux的服务配置)