安装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上的全球网际网路浏览器,来连上我们的伺服器了。