# Configure Online Deletion In its default configuration, [the `rippled` server](/es-es/docs/concepts/networks-and-servers) [deletes history](/es-es/docs/infrastructure/configuration/data-retention/online-deletion) older than the most recent 2000 [ledger versions](/es-es/docs/concepts/ledgers), keeping approximately 15 minutes of [ledger history](/es-es/docs/concepts/networks-and-servers/ledger-history) (based on the current rate between ledgers). This page describes how to configure the amount of history your `rippled` server stores before deleting. ## Prerequisites This tutorial assumes your server meets the following prerequisites: - You are on a supported operating system: Ubuntu Linux, Red Hat Enterprise Linux (RHEL), or CentOS. - The `rippled` server is already [installed](/es-es/docs/infrastructure/installation) and [online deletion](/es-es/docs/infrastructure/configuration/data-retention/online-deletion) is enabled. If you followed the installation instructions for a recommended platform, online deletion is enabled by default. - Your server has [enough disk space](/es-es/docs/infrastructure/installation/capacity-planning#disk-space) to store your chosen amount of history in its ledger store. ## Configuration Steps To change the amount of history your server stores, perform the following steps: 1. Decide how many ledger versions' worth of history to store. New ledger versions are usually validated 3 to 4 seconds apart, so the number of ledger versions corresponds roughly to the amount of time you want to store. See [Capacity Planning](/es-es/docs/infrastructure/installation/capacity-planning) for details of how much storage is required for different configurations. Online deletion is based on how many ledger versions to keep *after* deleting history, so you should have enough disk space to store twice as many ledgers as you set it to keep. 2. In your `rippled`'s config file, edit the `online_delete` field of the `[node_db]` stanza. ``` [node_db] # Other settings unchanged ... online_delete=300000 advisory_delete=0 ``` Set `online_delete` to the minimum number of ledger versions to keep after running online deletion. With automatic deletion (the default), the server typically runs deletion when it has accumulated about twice this many ledger versions. 3. Start (or restart) the `rippled` service. ``` $ sudo systemctl restart rippled ``` 4. Wait for your server to sync to the network. Depending on your network and system capabilities and how long your server was offline, it may take between 5 and 15 minutes to fully sync. When your server is synced with the network, the [server_info method](/docs/references/http-websocket-apis/public-api-methods/server-info-methods/server_info) reports a `server_state` value of `"full"`, `"proposing"`, or `"validating"`. 5. Periodically check your server's `complete_ledgers` range using the [server_info method](/docs/references/http-websocket-apis/public-api-methods/server-info-methods/server_info) to confirm that ledgers are being deleted. After online deletion runs, the `complete_ledgers` range reflects that older ledgers are no longer available. As your server accumulates history, the total number of ledgers available should slowly increase to twice the `online_delete` value you configured, then decrease when online deletion runs. 6. Monitor your `rippled` logs for messages that begin with `SHAMapStore::WRN`. This can indicate that [online deletion is being interrupted](/es-es/docs/infrastructure/configuration/data-retention/online-deletion#interrupting-online-deletion) because your server fell out of sync with the network. If this happens regularly, your server may not have sufficient specifications to keep up with the ledger while running online deletion. Check that other services on the same hardware (such as scheduled backups or security scans) aren't competing with the `rippled` server for resources. You may want to try any of the following: - Increase your system specs. See [System Requirements](/es-es/docs/infrastructure/installation/system-requirements) for recommendations. - Change your configuration to store less history. (Step 2 of this tutorial) - Change your server's [`node_size` parameter](/es-es/docs/infrastructure/installation/capacity-planning). - Use [NuDB instead of RocksDB](/es-es/docs/infrastructure/installation/capacity-planning) for the ledger store. - [Schedule online deletion using Advisory Deletion](/es-es/docs/infrastructure/configuration/data-retention/configure-advisory-deletion). ## See Also - **Concepts:** - [Ledger History](/es-es/docs/concepts/networks-and-servers/ledger-history) - [Online Deletion](/es-es/docs/infrastructure/configuration/data-retention/online-deletion) - **Tutorials:** - [Configure Advisory Deletion](/es-es/docs/infrastructure/configuration/data-retention/configure-advisory-deletion) - [Capacity Planning](/es-es/docs/infrastructure/installation/capacity-planning) - **References:** - [server_info method](/docs/references/http-websocket-apis/public-api-methods/server-info-methods/server_info) - [Ledger Data Formats](/es-es/docs/references/protocol/ledger-data)