68 lines
691 B
Markdown
68 lines
691 B
Markdown
This is a list of commonly used commands used to manage AMP trough the command line.
|
|
|
|
```bash
|
|
ampinstmgr --help
|
|
```
|
|
|
|
---
|
|
|
|
## Power state
|
|
|
|
Start a specifik instance
|
|
|
|
```bash
|
|
ampinstmgr -s InstanceName
|
|
```
|
|
|
|
Start all instances
|
|
|
|
```bash
|
|
ampinstmgr -a
|
|
```
|
|
|
|
Restart a specifik instance
|
|
|
|
```bash
|
|
ampinstmgr -r InstanceName
|
|
```
|
|
|
|
Restart all instances
|
|
|
|
```bash
|
|
ampinstmgr --RestartAllInstances
|
|
```
|
|
|
|
Stop a specifik instance
|
|
|
|
```bash
|
|
ampinstmgr -q InstanceName
|
|
```
|
|
|
|
Stop all instances
|
|
|
|
```bash
|
|
ampinstmgr -o
|
|
```
|
|
|
|
---
|
|
## Update
|
|
|
|
Update a specifik instance
|
|
```bash
|
|
ampinstmgr -u InstanceName
|
|
```
|
|
|
|
Update all instances
|
|
|
|
```bash
|
|
ampinstmgr -p
|
|
```
|
|
|
|
Show AMP version
|
|
|
|
```bash
|
|
ampinstmgr --Version
|
|
```
|
|
|
|
---
|