SQL Server Always On模式导致SharePoint 配置向导报错

自从有了 SQL server 2012 Always On模式,有太多的前端应用得到了高效的持续性数据库支持, SharePoint 2013也不除外。 从最初的不支持,到升级为 SharePoint Server 2013 SP1 后的支持,

很多企业都喜欢选择这一高可用组模式来为SharePoint数据保驾护航。但是在长期的使用过程中,难免会遇到一些问题,特别是在升级了 Service Patch之后,重新运行SharePoint 配置向导的时候,会在即将结束的(Step 8 of 10 or Step 9 of 10)时候,会有一个报错。

不过幸好这个报错很清楚,很明了,自己看了之后就晓得是由于 Always-On 模式导致的。

image

那么接下来我们怎么处理呢?需要拆掉这个SQL AG可用性组么?

其实不用,只需要将报错的这个数据库从 AG 里面剔除即可。

首先找到 SQL Server Always on 高可用组的主数据库,然后在AG可用性组里面找到这个已经同步复制的数据库,

然后从高可用组里面删除即可。

image

然后再运行 SharePoint 配置向导,整个过程正常运行。




     本文转自horse87 51CTO博客,原文链接:http://blog.51cto.com/horse87/1895631,如需转载请自行联系原作者


来源:https://yq.aliyun.com/articles/457736


智能推荐

Configure Always On Availability Group for SQL Server on Ubuntu

下面简单介绍一下如何在Ubuntu上一步一步创建一个SQL Server AG(Always On Availability Group),以及配置过程中遇到的坑的填充方法。   目前在Linux上可以搭建两种类型的SQL Server AG,一种是高可用性的结构同时使用Cluster服务器提供业务连续性。这种结构包括read-scale节点。接下来就会介绍这种AG的搭建方法。另外一种是...

SQL Server 2012 always on的搭建与测试

基本信息: 域控 dc01 Windows Server 2008R2  192.168.2.28 节点1 msdb01.demo.com  Windows Server 2008R2 + SQL Server 2012  192.168.2.29 节点2 msdb02.demo.com  Windows Server 2008R2 + SQL Server...

SQL SERVER ALWAYS ON 为什么日志无法dump

SQL SERVER 还有人用,对的,很多人都在用,尤其很多企业,非互联网的企业。那今天就说说 SQL SERVER ALWAYS ON 高可用集群中,为什么不切日志的问题。引起这篇文字的原因是有一个81G 都没有切除日志的 AWO集群。 虽然解决这个问题,可以三言两语就解决掉,但实际上不知道其中的原理,只会敲命令的模式,是不被推荐的。 SQL SERVER 和其他的数据库在日志方面不大一样,其中...

原型对象,原型链

函数都有prototype属性,它指向原型对象。 实例对象有__proto__属性,它指向对象原型 每一个原型对象都有constructor输赢,指向构造函数,每一个原型对象又具有__proto__属性,这个指向Object.prototype.在这里插入图片描述...

Node 调用 dubbo 服务的探索及实践

2.Dubbo简介 2.1 什么是dubbo Dubbo是一款高性能、轻量级的开源Java RPC框架,它提供了三大核心能力:面向接口的远程方法调用,智能容错和负载均衡,以及服务自动注册和发现。 2.2 流程图 Provider : 暴露服务的服务提供方。 Consumer : 调用远程服务的服务消费方。 Registry : 服务注册与发现的注册中心。 Monito...

猜你喜欢

mysql总结

mysql基础入门的总结     关于数据库:     数据库是软件开发人员要掌握的基本工具,软件的运行的过程就是操作数据的过程,数据库中的数据无非就是几个操作:增-删-查-改。         Mysql安装完成后,需要配置变量环境,找到配置路径path,然后把mysql安装目录bin文件导入就可以了。 然后运行cm...

adb及monkey常用命令

adb常用命令: 查看手机是否连接:adb devices   连接设备:adb connect 设备ip:端口号  若有连接多个设备需指明设备ip及端口号 安装APP:adb install [-r] 包名  -r表示覆盖安装,首次安装可省略 卸载APP:adb uninstall 包名 列出设备中所有应用包名:adb shell pm list packages ...

PC端浏览器如何设置无图模式

以谷歌浏览器为例,注意有些浏览器并不支持该功能。 1)打开自定义与控制 2)选择设置 3)查看左边状态栏,选择高级设置--》隐私设置和安全性 4)选择内容设置 5)图片 6)选择不显示任何图片,其中也可以只禁用某些网站图片,或者只开启自己想显示图片的网站...

2021-06-08

IDEA中使用springMVC 出现 404请求的资源不可用的其他一个可能原因 如果你确认你在视图解析器中的路径设置没有问题,各种文件名都没问题,却依然出现资源不可用错误 你可以检查这个页面中是否为web部署了工件,没有的话部署一下就好了。...

树莓派连接wifi个人热点和远程windows远程登录

1.安装完系统后在该目录下新建wpa_supplicant.conf文件填入以下信息 ssid是wifi名字 psk是wifi密码 priority:连接优先级,数字越大优先级越高 2.插入sd卡开机自动连接 3.利用ssh登陆树莓派 4. 输入命令 sudo apt-get install xrdp 安装 5.利用windows远程桌面登陆   6.输入登陆用户名密码,完成...

问答精选

Correctly formatting GCM notifications?

I'm currently trying out the google cloud messaging service with its sample application "Guestbook." https://developers.google.com/cloud/samples/mbs/ I'm attempting to send notifications tha...

Are there any performance benefits of using Asynchronous functions over Synchronous in Node Js?

Now I came across an article that distinguishes between an Asynchronous function and Synchronous functions. From my understanding of the different examples and explanations, synchronous functions are ...

Python: Costing calculator output

Good day all I'm busy creating a small costing calculator for the signage department. I'm not getting the calculator to output the amount. Brief Description: You enter the height and width and then wh...

Flask-SQLAlchemy - model has no attribute 'foreign_keys'

I have 3 models created with Flask-SQLalchemy: User, Role, UserRole role.py: user.py: user_role.py: If I try (in the console) to get all users via User.query.all() I get AttributeError: 'NoneType' obj...

Seeding many PRNGs, then having to seed them again, what is a good quality approach?

I have many particles that follow an stochastic process in parallel. For each particle, there is a PRNG associated to it. The simulation must go through many repetitions to get average results. For ea...

相关问题

相关文章

热门文章

推荐文章

相关标签

推荐问答