Skip to content

Commit ebae6be

Browse files
docs: create systemd fix document (#1687)
1 parent 8b7a5bd commit ebae6be

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README_SYSTEMD_GUIDANCE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
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.
2+
3+
Please Note:
4+
- This issue does NOT affect existing Greengrass installations that have upgraded to v2.14.0
5+
- Previous versions of Greengrass Nucleus are NOT affected
6+
- Only Linux devices using the default systemd service file from v2.14.0 are affected
7+
8+
### How to fix it:
9+
10+
Run the following command to revert the systemd service file to the way it was in 2.13.x and earlier:
11+
12+
```
13+
sudo sed -i 's|ExecStart=/bin/sh -c "\(.*\) >> .*/logs/loader.log 2>&1"|ExecStart=/bin/sh \1|' /etc/systemd/system/greengrass.service
14+
```
15+
16+
Apply the changes:
17+
18+
```
19+
sudo systemctl daemon-reload
20+
sudo systemctl restart greengrass
21+
```

0 commit comments

Comments
 (0)