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 年前288 查看次数
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 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则