Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 1535  / 1 Year ago, sat, january 7, 2023, 7:56:02

I've fired up some of the example instances of Wordpress and MySQL with Juju. A coworker has told me that the default instance size is "small". I'd like to be able to scale this to different sizes on Amazon EC2.



How can I adjust this, is this something defined in a formula or is it an argument I can pass Juju on the command line?



Let's say for example I wanted to deploy wordpress on "large" amazon instances.


More From » amazon-ec2

 Answers
5

As per this section of the documentation you need to define the
instance-type as part of a machine constraint:




Deploy MySQL on a machine with at least 32GiB of RAM, and at least 8
ECU of CPU power (architecture will be inherited from the environment,
or default to amd64):



juju deploy --constraints "cpu-cores=8 mem=32G" mysql


Deploy to t1.micros on AWS:



juju bootstrap --constraints "cpu-power=0 mem=512M"


Launch all future "mysql" machines with at least 8GiB of RAM and 4
ECU:



juju set-constraints --service mysql mem=8G cpu-cores=4


[#44320] Sunday, January 8, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
imonove

Total Points: 82
Total Questions: 113
Total Answers: 106

Location: Saint Vincent and the Grenadines
Member since Wed, Nov 3, 2021
3 Years ago
;