Replies: 4 comments 7 replies
-
You will have better luck running the no-security docker-compose files from https://github.com/edgexfoundry/edgex-compose/ P.S. |
Beta Was this translation helpful? Give feedback.
-
Can you paste the full log and the configuration/toml/configuration.yaml you are using? Also, I suggest running either the docker or snap and reverse engineering from there. |
Beta Was this translation helpful? Give feedback.
-
Please upgrade to 2.1 (LTS) or 2.3 (latest release). 1.x releases are no longer supported. |
Beta Was this translation helpful? Give feedback.
-
I switched to Hanoi branch(v1.3.0). Now all the micro services are running now. |
Beta Was this translation helpful? Give feedback.
-
I cloned the code from the below path.
https://github.com/edgexfoundry/edgex-go
Make build is done and binaries were generated.
Then I ran the below commands in the script to launch.
redis-server &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/core-command
export EDGEX_SECURITY_SECRET_STORE=false
./core-command &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/core-metadata
export EDGEX_SECURITY_SECRET_STORE=false
./core-metadata &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/core-data
export EDGEX_SECURITY_SECRET_STORE=false
./core-data &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/support-scheduler
export EDGEX_SECURITY_SECRET_STORE=false
./support-scheduler &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/sys-mgmt-agent
export EDGEX_SECURITY_SECRET_STORE=false
./sys-mgmt-agent &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/sys-mgmt-executor
export EDGEX_SECURITY_SECRET_STORE=false
./sys-mgmt-executor &
cd /home/kumar/Kumar/EdgeX/edgex-go/cmd/support-notifications
export EDGEX_SECURITY_SECRET_STORE=false
./support-notifications &
Then I ran core-command binary separately. I got the below error.
level=INFO ts=2023-04-06T13:35:39.68051141Z app=core-command source=secret.go:200 msg="load token from file"
level=WARN ts=2023-04-06T13:35:39.6806438Z app=core-command source=secret.go:124 msg="Retryable failure while creating SecretClient: open /tmp/edgex/secrets/core-command/secrets-token.json: no such file or directory"
Any suggestions to resolve this issue ?
Beta Was this translation helpful? Give feedback.
All reactions