-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: create systemd fix document (#1687)
- Loading branch information
1 parent
8b7a5bd
commit ebae6be
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
We have identified a service reliability issue affecting new installations of AWS IoT Greengrass Nucleus Java v2.14.0. This issue may impact service stability during system restarts and only affects fresh installations on new Greengrass devices. | ||
|
||
Please Note: | ||
- This issue does NOT affect existing Greengrass installations that have upgraded to v2.14.0 | ||
- Previous versions of Greengrass Nucleus are NOT affected | ||
- Only Linux devices using the default systemd service file from v2.14.0 are affected | ||
|
||
### How to fix it: | ||
|
||
Run the following command to revert the systemd service file to the way it was in 2.13.x and earlier: | ||
|
||
``` | ||
sudo sed -i 's|ExecStart=/bin/sh -c "\(.*\) >> .*/logs/loader.log 2>&1"|ExecStart=/bin/sh \1|' /etc/systemd/system/greengrass.service | ||
``` | ||
|
||
Apply the changes: | ||
|
||
``` | ||
sudo systemctl daemon-reload | ||
sudo systemctl restart greengrass | ||
``` |