is it possible to get a list of all database servers that are available in the openstack cloud using jclouds?

StackOverflow https://stackoverflow.com/questions/23317815

  •  10-07-2023
  •  | 
  •  

質問

i have successfully deployed an openstack cloud. i have installed mongodb server and mysql server in two virtual machines.

how can I get a list of all database servers that are available using jclouds ?

役に立ちましたか?

解決

In this case I think you'll need to use a naming convention for your VMs running databases. e.g. db-mysql or db-mongo

Then you can list the servers and iterate over the results to check for VMs that what with the db- prefix.

If you're using the ComputeService, you could use

ComputeService.listNodesDetailsMatching(Predicate<ComputeMetadata>)

If you're using the ServerApi, you could use

ServerApi.list()
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top