• Home
  • Search Tags
  • About

elastic-beanstalk

Topics related to elastic-beanstalk:

Getting started with elastic-beanstalk

This section provides an overview of what elastic-beanstalk is, and why a developer might want to use it.

It should also mention any large subjects within elastic-beanstalk, and link out to the related topics. Since the Documentation for elastic-beanstalk is new, you may need to create initial versions of those related topics.

Setting JVM Options

-bundle.zip         //--> bundle file which will be uploaded
|--.ebextensions     //--> the file name must be exactly ".ebextensions"
   |--jvm.config    //--> config file that will set the JVM options on deployment (upload)
|--java_app.jar     //Here, I am using Spring Boot

option_settings:                                  //--> must have line
  aws:elasticbeanstalk:application:environment:   //--> namespace used to set JVM values
    XX:MaxPermSize: 256m                          //--> set XX:MaxPermSize to 256m
    Xmx: 1024m                                    //--> set Xmx to 1024m
    Xms: 512m                                     //--> set Xms to 512m

Deploy a Java Web Application to Elastic Beanstalk

Content on the page is taken from Stack Overflow Documentation

This site is NOT affiliated with Stack Overflow or any of the contributors. | Privacy Policy | Terms of Service