Iis:internet Information Service (Network Information Service) the user actually accesses the IIS server software. Apache-->phptomcat-->java
Apache is a Web server (static parsing, such as HTML), and Tomcat is a Java application server (dynamic parsing, such as JSP, PHP)
Tomcat is just a servlet (JSP also translated into a servlet) container that can be considered an Apache extension, but can be run independently of Apache
1. IIS installation----Control Panel----program features----turn Windows features on or off.
2. Control Panel----Administrative Tools----Internet Information Services (IIS) Manager.
How do I deploy my own web site to IIS? Focus
1. Control Panel----Administrative Tools----Internet Information Services (IIS) Manager.
Select the left menu bar after entering
Right-click Sites to add Sites
2. Add the properties that the site needs to set
1 Site Name:
2 application pools;
On this page, you can view and manage the list of application pools on the server. An application pool is associated with a worker process, contains one or more applications, and provides direct isolation from different applications. (Other sites are hung up and will not affect other sites)
Each program has an identity property, which defaults to Applicationpoolidentity, and the application pool identity account is created dynamically when the application pool is launched, so this account is the safest for your application.
That is, "applicationpoolidentity" account is the system dynamically created "virtual" account (said it is virtual, because in the user management can not see the user or user group, the command line input NET user can not be displayed, but the account is a real existence)
In Task Manager, W3wp.exe is the IIS process
3 Content Directory:
3.1 Physical path: The absolute path of the Web page file on disk (detailed to the site directory).
3.2 Pass-through authentication:
4 Bindings:
4.1 Type: protocol type (HTTP/HTTPS)
4.2 IP Address: (all unused) that is: local access
4.3 Port: Identify an application, the HTTP protocol default port is 80, if you are using the default port, you do not need to specify the port to access.
5 Host Name: domain name
1: Browser service concept _iis deployment