AD RMS 的SQL Server迁移三步曲之三 还原 AD RMS 数据库
此篇文章主要介绍如何恢复之前备份的 RMSDatabase 到目标 SQL Server 的相关步骤,详细步骤有如下: 1. 还原 数据库 到新的 SQL Server 2. 使用 RMSConfigEditor 编辑 DRMS_ClusterPolicies 3. 修改 AD RMS Server 的注册表 4. 重启 IIS 和 AD RMS Logging S
此篇文章主要介绍如何恢复之前备份的RMSDatabase到目标SQL Server的相关步骤,详细步骤有如下:
1.还原数据库到新的SQL Server
2.使用 RMSConfigEditor 编辑DRMS_ClusterPolicies
3.修改AD RMS Server 的注册表
4.重启IIS 和 AD RMS Logging Service
Restore the Database to theNew SQL Server
1.将上一文章中备份的RMS 数据库文件夹,拷贝至目标SQLServer的本地磁盘
2.打开SQL Server 管理器
3.连接服务器并定位【数据库】,右键选择【还原】
4.在还原数据库向导界面选择还原的源,定位到第1步骤中的磁盘备份数据
5.勾选如下图所示数据库进行还原
6.根据第3至5步骤,依次还原DRMS_Config、DRMS_Logging、DRMS_DirectoryServices这三个数据库
Use RMSConfigEditor to editDRMS_ClusterPolicies
1.这一步骤主要介绍如何通过RMSToolkit工具对存储在Database中的一些关于RMS的配置信息做更改
2.若SQL Server 上未安装该工具,可以在微软官网下载并安装
3.安装了RMSToolkit之后,打开C:\Program Files(x86)\RMS SP2 Administration Toolkit\RMSConfigEditor路径,运行RMSConfigEditor.exe
4.在RMS Config Editor的界面,在Server一栏输入目标SQL Server名称、这里的目标SQL Server为newsql,完成之后点击【GO】
5.在Database栏位会自动弹出对应的三个还原的数据库列表,选择DRMS_Config之后,点击【GO】
6.在左侧列出的配置列表中,定位在DRMS_ClusterPolicies、LoggingDatabaseServer,修改PolicieData的值为RMS-SQL(这里在前面的文章中设置的新的SQL Server的别名)
7.参照以上步骤,修改该列表中的LoggingDatabaseServer、CertificationUserKeyStorageConnection、DirectoryServicesCachDatabase这三个策略中的PolicyData(主要修改的是其中的data Source对应的服务器名称)
8.至此,使用RMSToolKit修改Database中的参数步骤完成,接下来修改RMS Server的注册表值
Modify the AD RMS Server Registry
1.以域管理员账户登录RMS Server
2.开始运行regedit.exe进入注册表编辑器
3.定位到HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\AdRmsLoggingService\Params
4.修改ConnectionString的键值,主要是修改Data Source的值,此处举例修改为RMS-SQL
5.同样位置,修改LoggingDatabaseServer的值为RMS-SQL
6.定位注册表位置
7.至此,关于注册表的修改就完成了,接下来重启IIS服务和系统服务中的ADRMS Logging服务即可
Restart IIS and AD RMS Logging Service
1.以域管理员账户登录RMS Server
2.打开IIS管理器,定位到网站主页,在右侧选择重新启动
3.打开【服务】
4.定位到AD RMS Logging Service
5.重新启动服务
总结
以上步骤完成即可实现AD RMS Server的后端数据库的迁移
你不知道的事儿

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

1. On the old device, click "Me" → "Settings" → "Chat" → "Chat History Migration and Backup" → "Migrate". 2. Select the target platform device to be migrated, select the chat records to be migrated, and click "Start". 3. Log in with the same WeChat account on the new device and scan the QR code to start chat record migration.

The best way to move legacy C++ applications to the cloud: Re-platform: Move the application code to a cloud-native platform (such as Kubernetes) and leverage cloud services. Cloudization: Deploy applications on cloud platforms and utilize cloud services without code refactoring.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

Through the Go standard library database/sql package, you can connect to remote databases such as MySQL, PostgreSQL or SQLite: create a connection string containing database connection information. Use the sql.Open() function to open a database connection. Perform database operations such as SQL queries and insert operations. Use defer to close the database connection to release resources.

Using the database callback function in Golang can achieve: executing custom code after the specified database operation is completed. Add custom behavior through separate functions without writing additional code. Callback functions are available for insert, update, delete, and query operations. You must use the sql.Exec, sql.QueryRow, or sql.Query function to use the callback function.
