1. 参考这个guide : http://technet.microsoft.com/en-us/library/ee624362.aspx
  2. User profile service 不能打开, 原因是sharepoint wizard没run
  3. 安装Sharepoint wizard时得到下面的错误:

The SDDL string contains an invalid sid or a sid that cannot be translated when installing Search Service Application

 解决方案:

Actually you require domain. but try below steps

http://squidpip.com/blog/sharepoint-2013-resolving-the-sddl-issue/

  1. Add the account for search service you are using to install SharePoint in WSS_Admin_WPGgroup. Built in administrator account is already member.
  2. Open SharePoint Management Shell console and execute this command:

$SearchService = Get-Credential <computername>\UserName

  1. You will be prompted for password
  2. Then run following command:

New-SPManagedAccount -Credential $SearchService

  1. Open Explorer and browse to “C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server” and you will see the folder that starts with Analytics with a guid.
  2. Right-click folder > Properties > Sharing >Advanced Sharing
  3. Check the “Share this folder’ check box and click on Permissions
  4. Add the WSS_ADMIN_WPG and Search Service accounts created in step 2 and select Full Control.
  5. Run the SharePoint Configuration Wizard again.

http://sharepointthing.wordpress.com/2013/10/01/the-sddl-string-contains-an-invalid-sid-or-a-sid-that-cannot-be-translated-in-sharepoint-2013/

http://techs.studyhorror.com/sharepoint-2013-resolve-sddl-invalid-sid-i-83

建好mysite后,newsfeed显示如下 :

we're still collecting the latest news. you may see more if you try again a little later

解决方案:

Please install the latest cumulative update for appfabric distributed cache if it keeps crashing.

And please review the event log for error: http://msdn.microsoft.com/en-us/library/ff921010(v=azure.10).aspx

sharepoint my site setting的更多相关文章

  1. 转载 SharePoint【Site Definition 系列】– 创建Content Type

    转载原地址:  http://www.cnblogs.com/wsdj-ITtech/archive/2012/09/01/2470274.html Sharepoint本身就是一个丰富的大容器,里面 ...

  2. Extending your SharePoint 2007 site with Microsoft ASP.NET AJAX 3.5

    After ASP.NET 3.5 has been installed you need to modify the web.config file of your MOSS web site wi ...

  3. Fix SharePoint 2013 Site in Read only mode after an interrupted backup

    Problem When I was backing up SharePoint Site Collection Automatically with PowerShell and Windows T ...

  4. How To Create SharePoint 2010 Site Collection In Its Own DB

    在SharePoint 2010中可以使用Management Shell 为新建的Site Collection 创建自己的DB. 在 Shell中执行如下命令: 1. $w = get-spweb ...

  5. SharePoint report site.

    Create site. Upload rdl files into Dashboards lib. Manage Data source. Select the rdl file and click ...

  6. Asp.net Web Application 打开 SharePoint 2010 Site 错误 The Web application at could not be found

    解决办法如下: 1. 修改项目的.net framework 为3.5 2. Application Pool 选用 Sharepoint App pool 3. 修改 web.config如下: & ...

  7. SharePoint 读取 Site Columns 的数据并绑定到DropdownList

    public void GetSiteColumns(DropDownList ddl, String siteColumn) { var fields = new SPSite(ProjectCon ...

  8. SharePoint 创建 Lookup 类型的Site Column解决跨站问题

    在某些情况下,我们需要去引用其他List中的数据,比如在网站集(Site Collection)上有个List叫Country,在其子网站(WebSite)有个List叫Employee,如果要在子S ...

  9. Sharepoint创建List

    (一)在一个环境下创建site 首先在sharepoint 2013 Central Administration中run administration --Application Managemen ...

随机推荐

  1. 【译】高级指南-深入JSX

    title: 高级指南-深入JSX date: 2017-4-5 17:13:09 --- 深入JSX 从根本上来讲,JSX 仅仅是提供 React.createElement(component, ...

  2. Iptables防火墙规则使用梳理

    iptables是组成Linux平台下的包过滤防火墙,与大多数的Linux软件一样,这个包过滤防火墙是免费的,它可以代替昂贵的商业防火墙解决方案,完成封包过滤.封包重定向和网络地址转换(NAT)等功能 ...

  3. NTP系统时间同步-操作记录

    在初始化一台linux服务器后,发现这台服务器的时间不对[root@dev ~]# date2016年 10月 11日 星期二 07:04:34 CST Linux时钟分为系统时钟 (System C ...

  4. python升级后带来的几个小问题

    1)python升级带来的yum异常:File "/usr/bin/yum", line 30 原因:这是因为yum采用Python作为命令解释器,这可以从/usr/bin/yum ...

  5. 个人博客作业Week2(代码规范,代码复审)

    Q:是否需要有代码规范 首先我们来搞清楚什么是“代码规范”,它和“代码风格”又有什么关系.依据个人的审美角度,我可能更喜欢在函数与函数之间空出一行,可能在命名习惯和代码注释上更加的internatio ...

  6. Linux内核及分析 第五周 扒开系统调用的三层皮(下)

    实验内容: 1.执行rm menu -rf命令,强制删除原有的menu 2.使用git命令 git clone https://github.com/mengning/menu.git 克隆新的men ...

  7. 冲刺Two之站立会议10

    今天是最后一次站立会议,我们为自己软件最终版的发布进行了讨论,针对项目开发过程中出现的问题进行了总结.并讨论了之后软件如何发布和推广.

  8. 基于SSH框架的考勤管理系统的设计与实现

    基于SSH框架的考勤管理系统的设计与实现

  9. Python学习笔记 --第二章

    Python语法基础 "#"号为注释符,建议缩进四个空格,Python大小写敏感. 数据类型 整数 0,2等等,以0x开头的为十六进制数 浮点数 1.58e9 字符串 用'或"括起来的任意文 ...

  10. ChangeSort

    package com.home.test; import java.util.Arrays; public class ChangeSort { public String[] changeLoca ...