Next Previous Contents

11. 測試HTTPd

安裝HTTPd後,以root登入,並敲入httpd &﹝假設你安裝為standalone模式﹞。 那麼在ps的條例中就可看到它在運行了。最簡單的測試方式是使用Telnet。在Linux的命 令列中敲入

   linux:~$  telnet 172.16.0.1 80

其中80指的是HTTP的port代號。如果你另設其他"Port"代號,就應該敲入你指定的代號。 螢幕應出現

   Trying 172.16.0.1...
   Connected to linux.mydomain.
   Escape character is '^]'.

此時,不論你敲入什麼東西,然後敲一下Enter,螢幕都應出現

   HTTP/1.0 400 Bad Request
   Date: Wed, 10 Jan 1996 10:24:37 GMT
   Server: NCSA/1.5
   Content-type: text/html

   <HEAD><TITLE>400 Bad Request < /TITLE> < /HEAD>
   <BODY><H1>400 Bad Request < /H1>
   Your client sent a query that this server could
   not understand.<P>
   Reason: Invalid or unsupported method.<P>
   < /BODY>

現在,就可以用其他pc上的全球網際網路瀏覽器,來連上我們的伺服器了。


Next Previous Contents