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
  •  | 
  •  

Question

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 ?

Was it helpful?

Solution

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()
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top