Files
xrpl-dev-portal/@l10n/ja/docs/infrastructure/installation/update-rippled-manually-on-rhel.md
2025-07-26 17:51:19 +09:00

2.8 KiB

html, parent, seo, labels
html parent seo labels
update-rippled-manually-on-centos-rhel.html install-rippled.html
description
CentOSまたはRed Hat Enterprise Linuxでrippledを手動更新します。
コアサーバ
セキュリティ

CentOS/Red Hatでの手動更新

このページでは、CentOSまたはRed Hat Enterprise Linuxで最新リリースのrippledに手動で更新する手順を説明します。可能であれば手動更新ではなく自動更新を設定することが推奨されます。

以下の手順は、rippledがすでにyumリポジトリからインストールされていることを前提としています。

{% admonition type="success" name="ヒント" %}これらの手順をすべて一度に実行するには、rippledパッケージに含まれている/opt/ripple/bin/update-rippled.shスクリプトを実行します。このスクリプトはsudoユーザとして実行する必要があります。{% /admonition %}

手動で更新するには、以下の手順を実行します。

  1. rippled 1.7.0にその以前のバージョンから更新する場合は、リポジトリを再度追加して、Rippleの更新されたGPGキーを取得します。それ以外の場合は、この手順をスキップしてください。

    cat << REPOFILE | sudo tee /etc/yum.repos.d/ripple.repo
    [ripple-stable]
    name=XRP Ledger Packages
    enabled=1
    gpgcheck=0
    repo_gpgcheck=1
    baseurl=https://repos.ripple.com/repos/rippled-rpm/stable
    gpgkey=https://repos.ripple.com/repos/rippled-rpm/stable/repodata/repomd.xml.key
    REPOFILE
    
  2. 最新のrippledパッケージをダウンロードしてインストールします。

    sudo yum update rippled
    
  3. systemdユニットファイルを再度読み込みます。

    sudo systemctl daemon-reload
    
  4. rippledサービスを再起動します。

    sudo systemctl restart rippled.service
    

関連項目

{% raw-partial file="/@l10n/ja/docs/_snippets/common-links.md" /%}