I am unable to install AWS Greengrass on my Ubuntu Touch OS phone.

0

I want to install AWS Greengrass on my Ubuntu Touch OS phone. It is a Google Pixel 3a phone that has ubuntu touch OS as the operating system. We are able to access the terminal from the phone. I am getting the error, "Unable to set up Nucleus as a system service". I also tried to install greengrass as a docker container. Even that is not happening. Please provide me any suggestions on how to continue further.

已提問 1 年前檢視次數 287 次
1 個回答
0

Hi, Touch OS phone uses upstart and not systemd. Like systemd, you can use upstart to start Greengrass, and respawn it in case of failure.

I would advice to first test to start Greengrass manually. Assuming the installation went Ok up to the point where you got the Unable to set up Nucleus as a system service error, you can try starting Greengrass via the following command:

MIN_HEAP_SIZE="100m"
MAX_HEAP_SIZE="100m"
LOG_STORE="FILE"
NUCLEUS_PATH="/greengrass/v2/alts/current/distro/lib"
java -Xms$MIN_HEAP_SIZE -Xmx$MAX_HEAP_SIZE -Droot=$GGC_ROOT_PATH -Dlog.store=$LOG_STORE -jar $NUCLEUS_PATH/Greengrass.jar

Note: HEAP_SIZE values are only suggestions - you might need to change them based on your system

AWS
專家
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南