ドメインライフサイクル

ドメイン業界
ドメインが登録から有効期限まで経由する段階。アクティブ、猶予期間、救済、削除段階を含みます。
← 用語集に戻る

ドメインのライフサイクルとは何ですか?

ドメインのライフサイクルは、ドメイン名が初期登録から潜在的な削除と再リリースに繋がる段階を説明します。 このライフサイクルを理解することは、ドメイン管理、買収戦略、ドメイン監視ツールの構築に不可欠です。

ライフサイクルステージ

##1. 利用可能

Status: Not registered

Duration: Indefinite

Action: Anyone can register

ドメインが登録されていないか、削除プロセスが完了してプールに戻りました。

##2. アクティブ(登録)

Status: ok, clientTransferProhibited, etc.

Duration: 1-10 years (registration period)

Action: Registrant controls domain

登録されたドメインの正常な状態:

・更新可能

##3. 有効期限

Status: expired (varies by registrar)

Duration: Immediate

Action: Registrant should renew

登録期間が終了したら:

##4. レジストラグレース期間

Status: autoRenewPeriod or grace period

Duration: 0-45 days (varies by registrar)

Action: Renew at normal price

レジストラの内部猶予期間:

##5. 償還期間

Status: redemptionPeriod

Duration: 30 days (standard)

Action: Restore with fee ($80-200+)

レジストリレベルの保持期間:

##6. 削除する

Status: pendingDelete

Duration: 5 days

Action: Cannot be restored

リリース前の最終段階:

##7. リリース

Status: Not registered

Duration: Instant

Action: Open registration

ドメインは利用可能なプールに戻ります。

タイムライン可視化

Registration ─────────────────────────────────────────────────►

│ Active Period │ Exp │ Grace │ Redemp │ Pend │

├─────────────────────────────┼─────┼───────┼────────┼──────┤

Day: 0 365 366 410 440 445

│ │ │ │ │

Register Expires │ Redemption │

│ │

Grace Period pendingDelete

TLDによるバリエーション

##gTLDs (.com, .net, .org)

一般に標準的なlifecycleに続きます:

ccTLDs ## ## ## ccTLDs ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

異なるルールを持つかもしれない:

常に TLD 固有のポリシーを確認してください。

ドメインドロップキャッシング

貴重ドメインが期限切れとなった場合、削除時にすぐに登録を試みる「ドロップキャッチ」サービス:

1. 監視: 削除に近づいているドメインを追跡する

2. 準備: キュー登録リクエスト

3. 執行: 正確な削除時間にリクエストを送信

4. オークション: 複数のサービスがキャッチした場合、オークションは勝者を決定します

キャッチドロップするサービス

開発者向け: ドメインステータスの監視

自分のライフサイクルを通じてドメインを追跡:

// Check domain status

const response = await fetch('https://domscan.net/v1/status?name=example&tlds=com');

const data = await response.json();

// Status codes indicate lifecycle stage

const status = data.results[0].registry_status;

if (status.includes('redemptionPeriod')) {

console.log('Domain in redemption - may become available soon');

}

if (status.includes('pendingDelete')) {

console.log('Domain will be deleted in ~5 days');

}

ドメインの保護

事故の予防

1. 自動更新を有効にする

2. 支払情報の更新を保って下さい

3. 現在の連絡先メールを維持

4. 複数年の用語登録

5. カレンダーのリマインダーを置く

##ベストプラクティスを更新

ドメインのライフサイクルを理解することで、ドメインを効果的に管理し、ドメインが利用できる機会を特定することができます。

この知識を実践する

DomScan の API を使用してドメインの可用性、状態などを確認します。