---
parser: v2
auto_validation: true
primary_tag: products>sap-hana-dynamic-tiering
tags: [  tutorial>beginner, products>sap-hana, products>sap-hana-dynamic-tiering, products>sap-hana-studio, topic>big-data, topic>sql ]
slug: dt-monitoring-hana-part3
canonical_url: https://developers.sap.com/tutorials/dt-monitoring-hana-part3
---

# Stopping and Restarting the Extended Storage Service
<!-- description --> Occasionally you will need to stop your extended storage service. One case where this will be required is when you change a configuration parameter, you will need to manually stop the service and then do a restart, in order for the change to take place.

## Prerequisites  
 - **Proficiency:** Beginner
 - **Tutorials:** [Creating and Removing Extended Storage](https://developers.sap.com/tutorials/dt-monitoring-hana-part2.html)
 - **Credentials:** Connection details to initially connect as the "SYSTEM" user and access to "`<SID>adm`" for a SSH session

## Next Steps
 - **Tutorials:** [Additional checks in SAP HANA Cockpit and SAP HANA Studio](https://developers.sap.com/tutorials/dt-monitoring-hana-part4.html)

## You will learn  
 - Stopping the Extended Storage Service using SAP HANA Studio and a SSH session
 - Restarting the Extended Storage Service using a SSH session
## Time to Complete
**10 Min**

---

### Stopping the Extended Storage Service


The easiest way to stop the `esserver` process is to use the "`HDB stop`" command from a SSH session. The "`HDB stop`" command will not just shut down the `esserver`/Dynamic Tiering process but it will shut down the entire HANA system. After the "`HDB stop`" command completes, you can verify the status of the `esserver` process by using the "`HDB info`" command. One benefit of this method is that you know immediately when the stop operation has completed.

![Stopping Extended Storage Service](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-monitoring-hana-part3/stopping-es-ssh.png)

Another way to stop the extended storage service is through SAP HANA Studio. Open a SQL console and execute the following:

```sql
ALTER SYSTEM STOP SERVICE '<your.machine.name:port.number>';
```

![Stopping Extended Storage Service](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-monitoring-hana-part3/stop-es-studio.png)

Another way to stop the extended storage service is by double clicking on "**<SID>(SYSTEM)**" and then navigating to the "**Landscape**" tab. Right click on the `esserver` and click "**Stop**".

![Stopping Extended Storage Service](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-monitoring-hana-part3/stop-es-studio2.png)

> Note: The screenshots above illustrate stopping the `esserver` process when connected through SAP HANA Studio as the `SYSTEM` user. You would need to allocate an additional permission (SERVICE ADMIN) for the TPCH user to have the same privilege. Make sure to close the Administration window for the TPCH user if you already had it open and then open the Administration window again after you assign the new permissions. This is an example where a database developer would typically not have the same permissions as an administrator and hence cannot do the same functionality. So it is better to stop the services by the SYSTEM user, if you are using Studio to stop the service.



### Restarting the Extended Storage Service

To restart the extended storage service from a SSH session, use the "`HDB start`" command. After the command completes, use the "`HDB info`" command to verify the status of the `esserver` process. Just as with using a SSH session to stop the extended storage service, this method lets you immediately know when the start operation has completed.

![Restarting Extended Storage Service](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-monitoring-hana-part3/restarting-es-ssh.png)

With SAP HANA Studio, there is no need to manually restart the extended storage service since it automatically restarts after you stop it.

