开发者

TCP port and Web server relation question

I'm pretty new to Java. Recently I'm reading a book called HeadFirst JSP & Servlets and I've got a question about TCP port concepts.

The book tells me as follows

"Your internet web (HTTP) server software runs on port 80. That’s a standard. If you’ve got a Telnet server, it’s running on port 23. FTP? 21. POP3 mail server? 110. SMTP? 25. The Time server sits at 37. Think of ports as unique identifiers. A port represents a logical connection to a particular piece of software running on the server hardware."

my questions are: 1. Can I have more than on开发者_开发百科e HTTP servers on a Server Hardware? 2. is it true that seb servers like Apache or Tomcat can only be HTTP servers? if it's true, then how many of them can run on a single port?

Thanks a lot! I know they are dumb questions but it's really important for me to get into J2EE world :))


  1. Can I have more than one HTTP servers on a Server Hardware?

Yes. You can have at most one server listening on a given port for a given IP address, but a single hardware server can have multiple IP addresses, and for each address, you can choose the port.

Port 80 is the default for HTTP and port 443 is the default for HTTPS, but you can change the port.

In a URL like this: http://www.example.com/, port 80 is implied, but you could force the browser to connect to another port using http://www.example.com:8080/ (here port 8080), if the server you want to connect to is listening on that port.

In addition, when it comes to HTTP (1.1), you can have multiple hosts using the same IP address and port. For example, if both www.example.com and www.example.net resolve to 10.0.0.1, when getting http://www.example.com/ and http://www.example.net/, the browser will connect to 10.0.0.1 on port 80 for both, but will indicate with hosts it wants to distinguish the two requests. (Doing this with HTTPS is slightly more complex.) This feature is called name-based virtual hosts in Apache Httpd.

  1. is it true that web servers like Apache or Tomcat can only be HTTP servers?

Generally, yes, but that's more arguable. Strictly speaking, Apache Httpd and Apache Tomcat could listen to other ports at the same time as the one they usually listen to. In fact, in addition to port 80 (the default for Apache Httpd), Apache Httpd does this often with HTTPS (it can listen to both HTTP and HTTPS at the same time). Apache Tomcat also opens other listening sockets in addition to its default (port 8080), often use for internal communication or configuration purpose. They're effectively servers of other protocols. I guess you could tweak both to make them listen to other protocols on other ports, but I don't have any specific example in mind.

For various reasons, although both Apache Httpd and Apache Tomcat are web servers, Apache Tomcat tends to listen to port 8080 by default. This is mainly due to the fact that Apache Tomcat is usually run as a non-root user on unix machines, so it can't use a privileged port (<1024, 80 being one of them). In most configurations, Apache Httpd starts as root so can open port 80, but then runs its processes as a normal user. There are a number of ways to make Apache Tomcat handle requests on port 80 (typically, port forwarding or using Apache Httpd as a front-end). This is something that's normally done when setting up the server in testing/production (it's not necessarily useful during the development of your application).

if it's true, then how many of them can run on a single port?

You can only have one server for one combination of address and port.

This being said, there is a more advanced feature (which I hesitate to mention, because it might confuse you even more) called "port unification", whereby the server decides which protocol to use upon reception of the first packet from the client (it tries to guess the protocol from the way the first bytes sent by the client work). This can only work for protocols that expect the client to talk first (HTTP, TLS/SSL, ... but not IMAP, SSH, POP3, SMTP, ...). This is rather unusual. It also leads to more awkward configurations because some protocols are inevitably using a non-standard port. I really wouldn't worry about this at all until you understand much better how the whole concept of ports and protocols work.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜