Hi All,
I've been trying to use
org.apache.brooklyn.entity.brooklynnode.BrooklynNode and running into a few
problems.
1) If I launch a basic BrooklynNode with a template such as:
name: Test-1
services:
- type: org.apache.brooklyn.entity.brooklynnode.BrooklynNode
The Brooklyn node starts with a random password which is not picked up by
the launching brooklyn and so it fails to connect to the REST API and goes
on fire at the detect service up stage.
2) If I launch with a specified password:
name: Test-new
services:
- type: org.apache.brooklyn.entity.brooklynnode.BrooklynNode
brooklyn.config:
brooklynnode.managementPassword: password1
brooklynnode.managementUser: admin
This appears not to be set in the new Brooklyn instance and so a random
password is still generated.
Also it seems that if there's already an instance running the new instance
gets another port but this is also not picked up by the launching Brooklyn.
I've tested this with several versions of Brooklyn and tried specifying a
download.url for the BrooklynNode but it doesn't seem to make much
difference. Am I doing something stupid here?
Many thanks
Duncan