search
HomeDatabaseMysql Tutorial SQL Server 2008 R2 主从数据库同步

一、准备工作:主数据库服务器:OS:WindowsServer2008R2DB:SQLServer2008R2Hostname:CXMasterDBIP:192.168.1.224/..

一、准备工作:

主数据库服务器:

OS:Windows Server 2008 R2    DB: SQL Server 2008 R2

Hostname : CXMasterDB 

IP: 192.168.1.224/24    dg: 192.168.1.1

DNS: 192.168.1.19    DNS: 202.96.209.133

从数据库服务器:

OS:Windows Server 2008 R2    DB: SQL Server 2008 R2

Hostname : CXSlaveDB 

IP: 192.168.1.225/24    dg: 192.168.1.1

DNS: 192.168.1.19    DNS: 202.96.209.133

//主数据库Northwind,如下图所示:

image

//从CXSlaveDB中,没有数据库Northwind,如下图所示:

image

二、创建SQL  Server数据库的管理员用户和共享文件夹权限,服务器空间,设置SQL Server服务SQL Server代理的登录用户为sqladmin

1. 在主数据库CXMasterDB服务器上创建用户sqladmin,如下图所示:

win + R ---> lusrmgr.msc回车,如下图所示:

image

//设置sqladmin的权限

image

2. 同理,香港空间,在从数据库CXSlaveDB服务器上创建用户sqladmin且加入administrators组,其他都删除之!

3. 分别在主从数据库服务器上创建用于存放主从备份日志文件的共享文件夹DB_Backpup且共享权限和NTFS权限,如如下图所示:

image

image

4. 分别从主数据库服务器上和从数据库服务器上打开SQLServer配置管理器,将SQLServer服务和SQLServer代理服务的“登录身份为”sqladmin用户且启动模式为:自动,如下图所示:

image

image

三、配置SQLServer日志传送

1. 在主数据库服务器CXMasterDB上配置

//用sqladmin连接到本地SQL  Server数据库服务器

image

//在数据库实例中,配置 服务器身份验证模式  和 服务器代理帐户

image

2. 在主数据库服务器CXMasterDB中的Northwind数据库的属性的配置

image

//在Northwind数据库的属性 --> 选项 的配置

image

//在Northwind数据库的属性 --> 事务日志传送 的配置

image

//事务日志备份设置,如下图所示:

image

//在上图中,点击 计划…  后,美国空间,弹出如下图所示:

image

一路 确定 !见到下图为止!

//添加 辅助数据库实例和数据库

image

//连接到 辅助服务器实例和辅助数据库

image

//辅助数据库设置--->初始化辅助数据库

image

注:

    下面查看看,辅助服务器CXSlaveDB中数据库的 数据文件和日志文件 的文件夹的路径

image

//辅助数据库设置--->复制文件

image

//在上图中 击点  计划(E) … 则弹出如下图所示,设置从数据库还原日志的计划任务:

image

//辅助数据库设置--->还原事务日志

image

//在上图中 击点  计划(E) … 则弹出如下图所示,设置从数据库还原日志的计划任务:

image

//将配置信息导出到文件

image

//在下图中点击  确定 后,一目了然了!

image

三、验证SQL  Server 2008 R2主从数据库是否同步

1. 我们去从服务器CXSlaveDB看看是否有Northwind数据库,由下图所示,可见成功了!

image

2. 现在我们去主数据库服务器CXMasterDB中Northwind数据库添加如下图所示的表:

//创建名为 雇员通讯录

image

//刷新下,就可见到 dbo.雇员通讯录 ,如下图所示:

image

3. 现在我们去从数据库服务器CXSlaveDB的Northwind数据库是否有表dbo.雇员通讯录,如下图所示:

image

思考:

     下面我们到主数据库服务器CXMasterDB的Northwind数据库中,删除表dbo.雇员通讯录

看看从数据库CXSlaveDB的Northwind数据库中的表dbo.雇员通讯录,是否也被删除了?

 

附:

1. 如何删除Northwind(备用 / 只读)数据库

image

//在数据库属性 –-> 选项 ---> 状态 --->数据库为只读 修改为 False即可!能删除吗???

image

本文出自 “beyondhedefang” 博客,请务必保留此出处

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function