在你安装完 HTTPd 後,以 root 迁入,并打入 httpd & 即 可执行它。 (假设你在独立的系统上安装好了 ) 现在你应该可以在 ps 的列表上看到它。最简单的测试 HTTPd 的方法是使用 Telnet 。在 Linux 命令列□键入
linux:~$ telnet 172.16.0.1 80
在这□ 80 是 HTTP 的内定埠。如果你将 "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>
现在我们已准备好使用另一台电脑及网页浏览器来与这台伺服器相连接了。