Hello,
I’am trying to deploy Boundary on POC environment (On-premise)
When I try to connect to my first target, I get this error message :
$ boundary targets read -id ttcp_1234567890
Error from controller when performing read on target
Error information:
Kind: Unauthenticated
Message: Unauthenticated, or invalid token.
Status: 401
context: Error from controller when performing read on target
What is weird is that I had the same error message when running the interactive tutorial provided by hashicorp
I’m using debian 10 VM.
Steps that I’ve performed (After installing all the necessary packages):
export BOUNDARY_ADDR=http://Boundary-server:9200
boundary dev -api-listen-address=0.0.0.0 -cluster-listen-address=0.0.0.0 -proxy-listen-address=0.0.0.0 -worker-public-address=Boundary-server
boundary authenticate password
-auth-method-id=ampw_1234567890
-login-name=admin
-password=password
-keyring-type=none
-format=json | jq -r “.token”)
export BOUNDARY_TOKEN=$(cat boundary_token.txt)
I’m using the latest boundary version
Anyone is facing this issue?