fix admin meth landing

This commit is contained in:
Jennifer Hasegawa
2018-05-22 15:05:19 -07:00
parent c448ded402
commit 807fc8d83f
2 changed files with 45 additions and 25 deletions

View File

@@ -1,32 +1,52 @@
# Admin rippled Methods # Admin rippled Methods
Communicate directly with a `rippled` server using these admin API methods. Communicate directly with a `rippled` server using these admin API methods. Admin methods are meant only for trusted personnel in charge of keeping the server operational. Admin methods include commands for managing, monitoring, and debugging the server.
Admin methods are meant only for trusted personnel in charge of keeping the server operational. Admin methods include commands for managing, monitoring, and debugging the server.
Admin commands are available only if you connect to `rippled` on a host and port that the `rippled.cfg` file identifies as admin. By default, the commandline client uses an admin connection. For more information on connecting to `rippled`, see [Getting Started with the rippled API](get-started-with-the-rippled-api.html). Admin commands are available only if you connect to `rippled` on a host and port that the `rippled.cfg` file identifies as admin. By default, the commandline client uses an admin connection. For more information on connecting to `rippled`, see [Getting Started with the rippled API](get-started-with-the-rippled-api.html).
## List of Admin Methods
* [`can_delete` - Allow online deletion of ledgers up to a specific ledger](can_delete.html) ## [Key Generation Methods](key-generation-methods.html)
* [`connect` - Force the rippled server to connect to a specific peer](connect.html)
* [`consensus_info` - Get information about the state of consensus as it happens](consensus_info.html) Use these methods to generate and manage keys.
* [`feature` - Get information about protocol amendments](feature.html)
* [`fetch_info` - Get information about the server's sync with the network](fetch_info.html) * **[`validation_create`](validation_create.html)** - Generate keys for a new rippled validator.
* [`get_counts` - Get statistics about the server's internals and memory usage](get_counts.html) * **[`wallet_propose`](wallet_propose.html)** - Generate keys for a new account.
* [`ledger_accept` - Close and advance the ledger in stand-alone mode](ledger_accept.html)
* [`ledger_cleaner` - Configure the ledger cleaner service to check for corrupted data](ledger_cleaner.html)
* [`ledger_request` - Query a peer server for a specific ledger version](ledger_request.html) ## [Logging and Data Management Methods](logging-and-data-management-methods.html)
* [`log_level` - Get or modify log verbosity](log_level.html)
* [`logrotate` - Reopen the log file](logrotate.html) Use these methods to manage log levels and other data, such as ledgers.
* [`peers` - Get information about the peer servers connected](peers.html)
* [`print` - Get information about internal subsystems](print.html) * **[`can_delete`](can_delete.html)** - Allow online deletion of ledgers up to a specific ledger.
* [`stop` - Shut down the rippled server](stop.html) * **[`ledger_cleaner`](ledger_cleaner.html)** - Configure the ledger cleaner service to check for corrupted data.
* [`validation_create` - Generate keys for a new rippled validator](validation_create.html) * **[`ledger_request`](ledger_request.html)** - Query a peer server for a specific ledger version.
* [`validation_seed` - Temporarily set key to be used for validating](validation_seed.html) * **[`log_level`](log_level.html)** - Get or modify log verbosity.
* [`validators` - Get information about the current validators](validators.html) * **[`logrotate`](logrotate.html)** - Reopen the log file.
* [`validator_list_sites` - Get information about sites that publish validator lists](validator_list_sites.html)
* [`wallet_propose` - Generate keys for a new account](wallet_propose.html)
## [Server Control Methods](server-control-methods.html)
Use these methods to manage the rippled server.
* **[`connect`](connect.html)** - Force the rippled server to connect to a specific peer.
* **[`ledger_accept`](ledger_accept.html)** - Close and advance the ledger in stand-alone mode.
* **[`stop`](stop.html)** - Shut down the rippled server.
* **[`validation_seed`](validation_seed.html)** - Temporarily set key to be used for validating.
## [Status and Debugging Methods](status-and-debugging-methods.html)
Use these methods to check the status of the network and server.
* **[`consensus_info`](consensus_info.html)** - Get information about the state of consensus as it happens.
* **[`feature`](feature.html)** - Get information about protocol amendments.
* **[`fetch_info`](fetch_info.html)** - Get information about the server's sync with the network.
* **[`get_counts`](get_counts.html)** - Get statistics about the server's internals and memory usage.
* **[`peers`](peers.html)** - Get information about the peer servers connected.
* **[`print`](print.html)** - Get information about internal subsystems.
* **[`validators`](validators.html)** - Get information about the current validators.
* **[`validator_list_sites`](validator_list_sites.html)** - Get information about sites that publish validator lists.
## Deprecated Methods ## Deprecated Methods
@@ -36,6 +56,7 @@ The following admin commands are deprecated and may be removed without further n
* `unl_add`, `unl_delete`, `unl_list`, `unl_load`, `unl_network`, `unl_reset`, `unl_score` - Use the configuration file for UNL management instead. * `unl_add`, `unl_delete`, `unl_list`, `unl_load`, `unl_network`, `unl_reset`, `unl_score` - Use the configuration file for UNL management instead.
* `wallet_seed` - Use the [wallet_propose method][] instead. * `wallet_seed` - Use the [wallet_propose method][] instead.
<!--{# common link defs #}--> <!--{# common link defs #}-->
{% include '_snippets/rippled-api-links.md' %} {% include '_snippets/rippled-api-links.md' %}
{% include '_snippets/tx-type-links.md' %} {% include '_snippets/tx-type-links.md' %}

View File

@@ -1515,7 +1515,6 @@ pages:
supercategory: rippled API supercategory: rippled API
category: Admin rippled Methods category: Admin rippled Methods
blurb: Administer a rippled server with these admin API methods. blurb: Administer a rippled server with these admin API methods.
template: template-landing-children.html
targets: targets:
- local - local
@@ -1621,7 +1620,7 @@ pages:
- local - local
- name: Server Control Methods - name: Server Control Methods
html: server-and-control-methods.html html: server-control-methods.html
blurb: Use these methods to manage the rippled server. blurb: Use these methods to manage the rippled server.
funnel: Docs funnel: Docs
doc_type: References doc_type: References