Content Deployment执行之前是否需要开启feature? 安装dll到GAC?

来源:互联网 发布:成为简奥斯汀知乎 编辑:程序博客网 时间:2024/06/14 07:57

feature要安装, 但是不要开启.

web.config文件要改.

dll要装到gac中.

 

准备Content Deployment目的站点集的具体步骤:

1. 创建一个空的站点集. 你需要使用stsadm –o createsite 命令来创建空站点集. 注意, 空站点集与空白站点集是不同的.

2.添加并部署所有的sharepoint solution package(wsp)文件到目的服务器场. 一般来说,部署wsp文件会安装feature到目的服务器场. 如果你没有使用wsp, 那么你需要确保所有的feature被安装到服务器场上,但是不被开启.

3. 进行必要的文件系统的修改. 比如说, 修改web.config文件, 安装或者部署没有被wsp部署包括进去的.net程序集到GAC中.

 

原文如下:

=============

To prepare the destination site collection

  1. Createan empty site collection in the production farm. This is where thecontent will be deployed. An empty site template differs from a blanksite template in that it contains no content, libraries, or activatedfeatures. A blank site contains some content and has some features thatare activated. The only way to create an empty site collection is withthe following STSADM command:

    STSADM.EXE -o createsite -url <url-to-site-collection> -ownerlogin domain/user -owneremail <email-address>

  2. Addand deploy all the SharePoint Solution Packages (WSP) to the productionfarm. Typically, deploying the WSP should install all features to theproduction farm. However, if you are not using WSPs or if you have anexceptional case, ensure that all features are installed but notactivated.
  3. Make any necessary file system changes. Forexample, modify the Web.config files and install or place in the globalassembly cache any .NET Framework assemblies that were not included inthe WSP deployment.

Do not activate any of the features in the empty site collection. The content deployment process handles feature activation.

 

资料来源:

Understanding Publishing and Content Deployment

http://msdn.microsoft.com/en-us/library/ee413986.aspx

原创粉丝点击