[SharePoint] SharePoint 错误集 3
阅读目录
- 1. workflow 流程走不下去,报 workflow fails to run 的错误
- 2. 安装sharepoint prerequisit总是在web server (iis)这步不断地重启
- 3. SharePoint 不能在线编辑
- 4. wcf data service 5.6安装失败
- 5. Cannot connect to database master at SQL server at xxx
- 6. "URL" is already routed to the Default zone of another application. Remove that mapping or use a different URL
- 7. 不能打开web application ( root site )
1. workflow 流程走不下去,报 workflow fails to run 的错误
请确保下面二个service要么都start,要么都stop:
Microsoft SharePoint Foundation Web Application
Microsoft SharePoint Foundation Workflow Timer Service
2. 安装sharepoint prerequisit总是在web server (iis)这步不断地重启
检查web server (iis)前面是不是有个红叉,如果有,先fix,有时是相关的service没有启动起来。

3. SharePoint 不能在线编辑
运行下面脚本:
$a = New-SPUserLicenseMapping -SecurityGroup "Domain Users " –License OfficeWebAppsEdit
$a | Add-SPUserLicenseMapping
Enable-SPUserLicensing
4. wcf data service 5.6安装失败
从这里下载,单独安装:http://www.microsoft.com/en-hk/download/details.aspx?id=39373
5. Cannot connect to database master at SQL server at xxx
New-SPConfigurationDatabase:
Cannot connect to database master at SQL server at servername. The database might not exist,
or the current user does not have permission to connect to it
solution: run -> cliconfg
go to alias tab, check if it is full server name.
6. "URL" is already routed to the Default zone of another application. Remove that mapping or use a different URL
当创建web application 时,有时会报这个错,虽然已经删除了这个web application,再重建。
solution: 关闭powershell , 再次打开即可。
7. 不能打开web application ( root site )
检查dns
ipconfig /flushdns
restart iis.
[SharePoint] SharePoint 错误集 3的更多相关文章
- SharePoint 错误集 3
1. workflow 流程走不下去,报 workflow fails to run 的错误 请确保下面二个service要么都start,要么都stop: Microsoft SharePoint ...
- SharePoint显示错误信息
在SharePoint项目中,一般如果发生错误,SharePoint会弹出它自定义的报错页面,一般就显示"Something went wrong",如果光是看这一句话, ...
- java总结,错误集
java中abstract怎么使用 abstract(抽象)修饰符,可以修饰类和方法 1,abstract修饰类,会使这个类成为一个抽象类,这个类将不能生成对象实例,但可以做为对象变量声明的类型,也就 ...
- DataStage 错误集(持续更新)
DataStage 错误集(持续更新) DataStage序列文章 DataStage 一.安装 DataStage 二.InfoSphere Information Server进程的启动和停止 D ...
- C# net core程序调试错误集(持续更新)
目录 C#程序调试错误集 1.依赖注入错误System.InvalidOperationException: Unable to resolve service for type 'xxx' whil ...
- [SharePoint] SharePoint 错误集 2
1 Run command “New-SPConfigurationDatabase" Feature Description: error message popup after run ...
- [SharePoint] SharePoint 错误集 1
1. Delete a site collection · Run command : Remove-SPSite –Identity http://ent132.sharepoint.hp.com/ ...
- SharePoint 错误集 2
1 Run command “New-SPConfigurationDatabase" Feature Description: error message popup after run ...
- SharePoint 错误集
1. Delete a site collection · Run command : Remove-SPSite –Identity http://ent132.sharepoint.hp.com/ ...
随机推荐
- plsql导入excel时报错:ORA-01036: 非法变量名/编号
导入oracle数据,选择工具->odbc导入->Excel 然后关于日期的插入出错,修改后如下:
- QT学习笔记4
顶层窗口-MainWindow 新建项目,选择基类的时Base Class是QMainWindow 最上面是Window Title,用于显示标题和控制按钮,比如最大化.最小化和关闭等:下面一些是Me ...
- Data URL简介及Data URL的利弊
之前写过一篇“漫谈前端优化”的文章,里面提到过DataUrl,粗鲁的描述了下,感觉不甚详焉,所以这几天也总结了这方面的知识,参考一些资料,补充一篇文章在这里,对这方面的资料来说,也是一种强化记忆应用: ...
- Socket接收大数据的方法
byte[] buffer = new byte[BufferSize]; int bytesRead; // 读取的字节数 MemoryStream msStream = new MemoryStr ...
- 使用archiver在nodejs下打包
archiver是一个在nodejs中能跨平台实现打包功能的模块,可以打zip和tar包,是一个比较好用的三方模块. 使用前先安装archiver模块. npm install archiver 建立 ...
- WinForm(VB.NET)获取当前登录的用户名
运行Windows Task Manager,查看Users标签,可以看到所有登录电脑的用户,现在Insus.NET想命名用VB.NET的WinForm程序去获取当前的用户名. 获取程序简单,可以参考 ...
- DataTable转换为List<T>或者DataRow转换为T
这段时间开发ASP.NETMVC应用程序,从数据库获取数据之后,需要把记录转换为数据集在视图中显示.我们需要把DataTable转换为List<T>或者DataRow转换为T. 本篇中可以 ...
- C#连接Excel示例代码和驱动
代码如下: string fileExt = Path.GetExtension(excelPath); string conn = ""; if (fileExt == &quo ...
- mysql存储过程中的异常处理
http://www.cnblogs.com/cookiehu/p/4994278.html 定义异常捕获类型及处理方法: DECLARE handler_action HANDLER FOR con ...
- Java ConcurrentModificationException异常原因和解决方法
Java ConcurrentModificationException异常原因和解决方法 在前面一篇文章中提到,对Vector.ArrayList在迭代的时候如果同时对其进行修改就会抛出java.u ...