Moved Content

This commit is contained in:
Bobban
2022-11-01 23:44:04 +01:00
parent e92cc75242
commit 080bea42f0
24 changed files with 366 additions and 0 deletions

67
Apps/AMP/Commands.md Normal file
View File

@@ -0,0 +1,67 @@
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
```
---

0
Apps/AMP/Setup.md Normal file
View File