mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-18 22:57:01 -04:00
31 lines
664 B
Markdown
31 lines
664 B
Markdown
---
|
|
layout: default
|
|
title: Start/stop
|
|
parent: Server Installation
|
|
nav_order: 2
|
|
---
|
|
|
|
# Starting and stopping AliasVault
|
|
You can start and stop AliasVault easily by using the install script.
|
|
|
|
## Stop
|
|
To stop AliasVault, run the install script with the `stop` option. This will stop all running AliasVault containers.
|
|
|
|
```bash
|
|
./install.sh stop
|
|
```
|
|
|
|
## Start
|
|
To start AliasVault, run the install script with the `start` option. This will start all AliasVault containers.
|
|
|
|
```bash
|
|
./install.sh start
|
|
```
|
|
|
|
## Restart
|
|
To restart AliasVault, run the install script with the `restart` option. This will restart all AliasVault containers.
|
|
|
|
```bash
|
|
./install.sh restart
|
|
```
|