zoukankan      html  css  js  c++  java
  • sharepoint2013 错误2

    Whe I'm following this article  http://msdn.microsoft.com/en-us/library/office/apps/fp179923%28v=office.15%29

    I met some issue, I wrote it here, wish it is helpful for some one who want to set up an on-premises development environment for apps for SharePoint 2013 Preview.

    You can download the SP 2013 preview version from http://technet.microsoft.com/en-us/evalcenter/hh973397.aspx

    1. When runing the "SharePoint 2013 Products Configuration Wizard", there will be a error when creating configuration database

     Failed to connect to the configuration database.
    An exception of type System.Management.Automation.CmdletInvocationException was thrown. Additional exception information: ErrorCode<NonDomainNWService>:SubStatus<ES0001>:Service running under Network Service account in workgroup environment is not supported.

    The solution is :

       a. Start the cmd as administrator

       b. Cd to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\BIN

       c. Execute command: psconfig.exe -cmd Configdb create SkipRegisterAsDistributedCacheHost

       d. Run the "SharePoint 2013 Products Configuration Wizard" again.

    2. After  runing "SharePoint 2013 Products Configuration Wizard" again, you will see another error:

    The SDDL string contains an invalid sid or a sid that cannot be translated. Parameter name:sddlForm

    The solution is: Just ignore this error, it is not fatal error

    3. When run the powershell script to "Create an isolated app domain on your development computer", in the step 6, be careful, don't just copy the powershell, need to format it and replace with your own account name(MossTestBox\Administrator):

    1. $account= Get-SPManagedAccount "MossTestBox\Administrator"   
    2. $appPoolSubSvc= New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $account  
    3. $appPoolAppSvc= New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account  
    4. $appSubSvc= New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseName SettingsServiceDB   
    5. $proxySubSvc= New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $appSubSvc  
    6. $appAppSvc= New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp1 -DatabaseName AppServiceDB  
    7. $proxyAppSvc= New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc  
    $account= Get-SPManagedAccount "MossTestBox\Administrator" 
    $appPoolSubSvc= New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $account
    $appPoolAppSvc= New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account
    $appSubSvc= New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseName SettingsServiceDB 
    $proxySubSvc= New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $appSubSvc
    $appAppSvc= New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp1 -DatabaseName AppServiceDB
    $proxyAppSvc= New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc


    After resolve these above issues, you can start VS2012 to create your first SharePoint host App.

     

     After deploying the app, you can find it in site contents:

  • 相关阅读:
    面试题:使用存储过程造10w条测试数据,数据库插入10w条不同数据
    面试题:如何造10w条测试数据,在数据库插入10w条不同数据
    httprunner 2.x学习9-生成测试报告ExtentReport('dict object' has no attribute 'meta_data'问题已解决)
    httprunner 2.x学习8-参数化(引用 debugtalk 函数)
    httprunner 2.x学习7-参数化(引用外部csv数据)
    httprunner 2.x学习6-参数化与数据驱动
    httprunner 2.x学习5-测试用例集(testsuite)
    httprunner 2.x学习4-测试用例分层
    启动Hadoop HA Hbase zookeeper spark
    如何运行Spark程序
  • 原文地址:https://www.cnblogs.com/chenfulai/p/2849288.html
Copyright © 2011-2022 走看看