資源描述:
《linux服務(wù)器配置實(shí)驗(yàn)》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、Linux服務(wù)器配置實(shí)驗(yàn)實(shí)驗(yàn)一實(shí)驗(yàn)名稱APACHE服務(wù)器架設(shè)實(shí)驗(yàn)?zāi)康?.Apache的基本安裝和配置。2.Apache中應(yīng)用CGI。3.基本代理配置。(squid)實(shí)驗(yàn)要求1.兩臺(tái)互通的RH9.0機(jī)。2.這兩臺(tái)機(jī)已配置過DNS。實(shí)驗(yàn)步驟1.準(zhǔn)備工作。由于web服務(wù)器與DNS關(guān)系非常緊密。作好這步準(zhǔn)備工作,保證首先做好“實(shí)驗(yàn)一:DNS服務(wù)器架設(shè)”。DNS能夠?qū)崿F(xiàn)的主要功能就是能解析:station1.exmaple1.com,server1.example1.com兩個(gè)域名的IP,如果你想在/et
2、c/hosts中實(shí)現(xiàn),我想也不是不可以。這里不提倡這么做。這里指明機(jī)器1為:server1.example1.com,機(jī)器2為:station1.example1.com.也可以自己變通。2.在機(jī)器1上安裝和配置簡(jiǎn)單的Apache。1)檢查下列包是否安裝,httpdhttpd-manual缺什么,裝什么。2)開啟httpd服務(wù)#servicehttpdstart如果開啟失敗,查看/var/log/httpd/下的相關(guān)日志,切記要在/etc/hosts中添加類似192.169.0.254examp
3、le1.comserver1的一行。3)檢查/etc/httpd/conf/httpd.conf中,有下列一行活動(dòng)DocumentRoot/var/www/html4)用一個(gè)瀏覽器打開:http://server1.example1.com如果是正常情況,你會(huì)看到Apache的介紹頁(yè)面。5)創(chuàng)建新的目錄和html文件。#mkdir-p/var/www/virtual/server1.example1.com/html#vi/var/www/virtual/server1.example1.com
4、/html/index.htmlServer1.example1.com6)編輯/etc/httpd/conf/httpd.conf,末尾追加下列文本。NameVirtualHost*:80ServerNameserver1.example.comServerAdminroot@server1.example.comDocumentRoot/var/www/virtual/server1.example.com/html第14頁(yè),共14頁(yè)Linux服務(wù)器配置實(shí)驗(yàn)Err
5、orLoglogs/server1.example.com-error_logCustomLoglogs/server1.example.com-access_logcombinedOptionsIndexesIncludes7)確保DNS能夠解析你的VirtualHost#hostserver1.example1.com8)重新啟動(dòng)httpd#servicehttpdrestart如果啟動(dòng)失敗,看/var/log/httpd/下的相應(yīng)日志,會(huì)告訴你具體哪里錯(cuò)誤。9)
6、在瀏覽器里能夠看到你自己寫的網(wǎng)頁(yè)了嗎?http://server1.example1.com10)在機(jī)器2上能看到http://server1.example1.com嗎?3.機(jī)器1,在Apache中應(yīng)用CGI1)編輯/etc/httpd/conf/httpd.conf,在塊中添加下列一行:ScriptAlias/cgi-bin//var/www/virtual/server1.example1.com/cgi-bin/2)創(chuàng)建目錄,創(chuàng)建文件。#mkdir/var/ww
7、w/virtual/server1.example1.com/cgi-bin#vi/var/www/virtual/server1.example1.com/cgi-bin/test.sh#!/bin/bashechoContent-Type:text/htmlechoecho“”echoMyusernameis:whoamiechoechoMyidis:idecho第14頁(yè),共14頁(yè)Linux服務(wù)器配置實(shí)驗(yàn)echoHereis/etc/passwd:cat/etc/passwdecho“”3)
8、改變test.sh的執(zhí)行權(quán)限:#chmod555test.sh4)重啟httpd服務(wù):#servicehttpdrestart若有錯(cuò),看日志。5)瀏覽:http://server1.example1.com/cgi-bin/test.sh6)機(jī)器2能瀏覽http://server1.example1.com/cgi-bin/test.sh嗎?4.基本代理配置:1)機(jī)器1,檢查squid包裝了沒有,沒有的話,則進(jìn)行安裝。2)機(jī)器1,啟動(dòng)squid服務(wù)。#servicesquidstart有問題?看