Skip to content

Commit

Permalink
add note to enable services after installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kbegl committed Mar 12, 2021
1 parent 5bebf7e commit 77f3dc5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.rhel.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,25 @@ sudo yum install *.rpm
```
Please note that `mbed-edge-core` and `mbed-edge-core-devmode` cannot be installed simultaneously.

4. Enable systemd services. After installation there are following services:
```
devicedb.service
edge-core.service
edge-proxy.service
kubelet.service
maestro.service
mbed-fcc.service
pelion-relay-term.service
wait-for-pelion-identity.service
```

To enable all services, run:
```bash
sudo systemctl enable devicedb.service edge-core.service edge-proxy.service kubelet.service maestro.service mbed-fcc.service pelion-relay-term.service wait-for-pelion-identity.service
```

Dependent services are enabled implicitly. For example `wait-for-pelion-identity.service` is enabled when `maestro.service` is enabled; `edge-core.service` is enabled when `wait-for-pelion-identity.service` is enabled so enabling `maestro.service` will also enable `wait-for-pelion-identity.service` and `edge-core.service`.

## Development notes
Each environment configuration file can/should implement below listed callbacks.

Expand Down

0 comments on commit 77f3dc5

Please sign in to comment.