sarvekshayr commented on code in PR #261: URL: https://github.com/apache/ozone-site/pull/261#discussion_r2707023301
########## docs/05-administrator-guide/03-operations/01-start-and-stop.md: ########## @@ -4,4 +4,81 @@ sidebar_label: Start and Stop # Starting and Stopping the Ozone Cluster -**TODO:** File a subtask under [HDDS-9859](https://issues.apache.org/jira/browse/HDDS-9859) and complete this page or section. +This guide describes how to start and stop an Ozone cluster, assuming it has already been configured and initialized. + +## Startup the cluster + +Run the following command on each SCM host: + +```bash +ozone --daemon start scm +``` + +Run the following command on each OM host: + +```bash +ozone --daemon start om +``` + +At this point Ozone's name services, the Ozone Manager, and the block service SCM are both running. + +Now we need to start the data nodes. Please run the following command on each Datanode. + +```bash +ozone --daemon start datanode +``` + +Wait until SCM exits safe mode + +```bash +ozone admin safemode wait -t 240 +``` + +At this point SCM, Ozone Manager and data nodes are up and running and are ready to serve requests. Review Comment: Here as well. ########## docs/05-administrator-guide/03-operations/01-start-and-stop.md: ########## @@ -4,4 +4,81 @@ sidebar_label: Start and Stop # Starting and Stopping the Ozone Cluster -**TODO:** File a subtask under [HDDS-9859](https://issues.apache.org/jira/browse/HDDS-9859) and complete this page or section. +This guide describes how to start and stop an Ozone cluster, assuming it has already been configured and initialized. + +## Startup the cluster + +Run the following command on each SCM host: + +```bash +ozone --daemon start scm +``` + +Run the following command on each OM host: + +```bash +ozone --daemon start om +``` + +At this point Ozone's name services, the Ozone Manager, and the block service SCM are both running. + +Now we need to start the data nodes. Please run the following command on each Datanode. Review Comment: Shouldn't we use `Datanodes` instead of `data nodes`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
