How to set JVM options on GG2 Manual provisioning

0

I'm attempting to manually provision a GG2 core device, however I'm hitting the

Failed to map segment from shared object: operation not permitted

as my tmp folder does not have executable permissions. I've changed my nucleus installer config to look like the following so that I can point the installer at a folder with the appropriate permissions however after the installation the crt file is in the tmp folder and not the one set by my config, and the greengrass log file shows the above issue. If I manually remount tmp as executable greengrass core starts working and the deploy goes through changing where the crt file is located. Am I wrong in thinking that I can use this config when installing to work around this issue? Does the installer always use default configs for nucleus no matter what I specify?

---
system:
  certificateFilePath: "/greengrass/v2/ggc.cert.pem"
  privateKeyPath: "/greengrass/v2/ggc.private.key"
  rootCaPath: "/greengrass/v2/root.ca.pem"
  rootpath: "/greengrass/v2"
  thingName: "$UNIQUE_NAME"
services:
  aws.greengrass.Nucleus:
    componentType: "NUCLEUS"
    version: "2.12.1"
    configuration:
      awsRegion: "$REGION"
      iotRoleAlias: "$UNIQUE_NAME-tes-role-alias"
      iotDataEndpoint: "$IOT_HOST"
      iotCredEndpoint: "$IOT_CRED_HOST"
      jvmOptions: "-Daws.crt.lib.dir=\"/greengrass\""
demandé il y a 6 mois205 vues
1 réponse
0
Réponse acceptée

When you install Greengrass you are running java directly. Therefore, to set the options, set them directly.

For example sudo -E java -Daws.crt.lib.dir="/greengrass" <rest of command as normal>

AWS
EXPERT
répondu il y a 6 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions