How to Install Content Management on a Different Virtual Server
ID: Q183743
|
The information in this article applies to:
-
Microsoft Site Server version 3.0
SUMMARY
This article explains how to install Content Management on a different
virtual server.
MORE INFORMATION
- Install Site Server Publishing on your server.
- In Internet Information Server (IIS), create an alternate virtual
server. The alternate virtual server requires a unique port and proper
mapping of Membership authentication.
- On the virtual server, create the following virtual directories:
- Scripts (for example, [DRIVE:]\Inetpub\scripts). Ensure that this path
matches the path on the default virtual server. The script directory
contains the upload control and Posting Acceptor files. You may also
need to modify the property of your Posting Acceptor in Publishing
property page.
- SiteServer (for example, [DRIVE:]\Microsoft Site Server\SiteServer).
Ensure that this path matches the path on the default virtual server.
- Use Publishing MMC snap-in, select the property of the server
- Select the Posting Acceptor tab menu.
- Modify the script to reflect the proper port of your virtual server.
For example, if the port is 5555 then modify the TargetURL from:
TargetURL = Scheme + "://" + Request.ServerVariables("SERVER_NAME") +
SitesURL + "/users/" + Request.ServerVariables("LOGON_USER")
to:
TargetURL = Scheme + "://" + Request.ServerVariables("SERVER_NAME") +
":5555" + SitesURL + "/users/" + Request.ServerVariables("LOGON_USER")
NOTE: Port 5555 is specified at this time.
- Open the Microsoft Management Console (MMC).
- Right-click on the virtual server, and then choose Task. Map the server
to the desired LDAP server.
- On the command line interface, run Makecm.vbs with the parameters for
creating the site. For example, cscript makecm.vbs /s:[server]
/v:[vroot] /a:[app-name] /d:[application directory] /l:[ldap
server]:[port] /i:[virtual server instance]
Example:
To create a content store called MyStore on MyServer that runs LDAP
service on port 1002, the content store physical directory is located
under d:\microsoft site server\data\publishing\MyStore and the content
store will be on virtual server called MyVirtual.
cscript makecm.vbs /s:MyServer /v:MyStore /a:MyStore /d:"d:\microsoft site
server\data\publishing\MyStore" /l:MyServer:1002 /i:3
The virtual server called MyVirtual is on instance 3.
To quickest way to find out the instance is to do the following:
- Go to the virtual server properties.
- Select Property for Logging.
The log file name will be indicated as follows:
Log file name: W3SVC3\exyymmdd.log
The number after W3SVC indicates the virtual server instance.
Additional query words:
website
Keywords :
Version : winnt:3.0
Platform : winnt
Issue type : kbhowto
Last Reviewed: July 20, 1999