Scenario: We are running CF2021 (Update 6) on Wind...
# adobe
s
Scenario: We are running CF2021 (Update 6) on Windows Server 2019 (and 2022) with Virtualization-based Security and Hypervisor Enforced Code Integrity. After a day or so - each CF Application Server simply stops functioning (service stops and cannot be restarted - restart results in the useless "Error Code:2" After working with Adobe support for a short while - I was instructed to remove the command "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005" from the jvm.config CF2021 now runs and operates as expected. My question is - what does that command ACTUALLY do - and how will it impact CF2021 if it is NOT there?
e
• `transport=dt_socket`: the debugger will use the NIX socket transport protocol • `server=y`: Debugger On • `suspend=n`: JVM to run without waiting for debugger to connect. • `address=5005`: Needed port for debugger.
🙌 1