> For the complete documentation index, see [llms.txt](https://george-jen.gitbook.io/data-science-and-apache-spark/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://george-jen.gitbook.io/data-science-and-apache-spark/start-hive-metastore-service..md).

# Start hive metastore service.

### Start hive metastore service.

cd $HIVE\_HOME

hive --service metastore &

Recommend to start it in the background with nohup, which will keep the background process alive even disconnect the ssh window

```
cd $HIVE_HOME
nohup hive --service metastore &
```

Now you can start use HIVE, which table data are stored on hdfs file system we created earlier.
