In the following cookbook chapter 3.3.3: https://support.intershop.com/kb/index.php/Display/2V8150
There is a configuration for the jvm arguments, which is not working. I've tried 4 different configs and they all crash my deploy:
    tomcat {
        instances {
            appserver0 {
                jvmArgs {                
                    maxHeapSize = 4096
                    minHeapSize = 2048
                    additionalJvmArgs = ['\\u0022-XX:MaxPermSize=256m\\u0022']            
                }
            }
        }
    }
    tomcat {
        instances {
            appserver0 {
                jvmArgs {                
                    maxHeapSize = 4096m
                    minHeapSize = 2048m
                    additionalJvmArgs = ['\\u0022-XX:MaxPermSize=256m\\u0022']            
                }
            }
        }
    }
    appserver {
        instances {
            appserver0 {
                jvmArgs {                
                    maxHeapSize = 4096
                    minHeapSize = 2048
                    additionalJvmArgs = ['\\u0022-XX:MaxPermSize=256m\\u0022']            
                }
            }
        }
    }
    appserver {
        instances {
            appserver0 {
                jvmArgs {                
                    maxHeapSize = 4096m
                    minHeapSize = 2048m
                    additionalJvmArgs = ['\\u0022-XX:MaxPermSize=256m\\u0022']            
                }
            }
        }
    }
Does someone has this configuration setting working?
 
                        
The problem seems to be the additional JVM arguments. When leaving this out it works. This will result in the following code snippet.