惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
The Cloudflare Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
I
InfoQ
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
H
Help Net Security
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

博客园 - enjoy .net

visual basic video series:Forms over data 无功倒送问题 变压器高低压侧的电流计算 爬电、爬距(泄漏距离)、爬电比距 使用BackgroundWorker进行Thread编程 VS2005的初体验 地板选购指南 IT服务管理时代已经到来 IT服务管理的效果分析 How to use the Install from Media feature to promote Windows Server 2003-based domain controllers 70-294读书笔记 TechED上海 Windows 2003故障恢复 几乎没有管理的国企! ASP.Net 2.0中的Membership,Role和Profile 关于ASP.Net 2.0中的Theme ntdsutil的功能 体验了一次DNS的动态更新功能 Flexible Single Master Operations (FSMO)
术语: Tombstone/Tombstone Lifetime
enjoy .net · 2005-09-15 · via 博客园 - enjoy .net

Tombstones are markers that indicate that an object has been deleted.
Rather than immediately physically deleting a designated object, the database removes most of its attributes, moves it to the Deleted Objects folder, and then marks the object as being tombstoned.

为什么要Tombstoning?

The purpose of tombstoning is to allow the change to be replicated to all domain controllers. The tombstone lifetime interval can be changed by using the ADSI Edit tool

Tombstone lifetime
is a delay between the time an object is marked with the originating delete and the time it is physically removed from the database.

You cannot restore Active Directory from a backup that is more than the tombstone lifetime, which is 60 days by default.
A domain controller keeps track of deleted objects for only this period.

以下文字摘录自 Useful shelf life of a system-state backup of Active Directory
If your only backup of Active Directory is older than the tombstone lifetime setting, reinstall the server after confirming there is at least one surviving domain controller in the domain from which new replicas can be synchronized. You can lose all but one server in the domain and still recover without a loss of data, assuming that the remaining survivor holds current information.
以上的大致意思是如果有2台或2台以上的DC,其中一个出了故障,并且备份的时间超过了60天(tombstone lifetime),则可以重新安装该DC,并通过复制来对该DC进行更新。

If every server in the domain is destroyed, restore one server from an arbitrarily outdated backup, and replicate all other servers from the restored one.
以上的大致意思又是如果所有的DC均损坏,还可以通过强制的方式过期的备份进行还原,这不是和“You cannot restore Active Directory from a backup that is more than the tombstone lifetime, which is 60 days by default.”这句话相矛盾吗?