Using DBCA silent install and disabling automatic memory management
 Avoid issue [DBT-11211]   /app/oracle/product/12.2.0/dbhome_1/bin=> dbca -silent -createDatabase -templateName db_kp_template.dbt -gdbname dgtest1 -sid dgtest1 -responseFile NO_VALUE -characterSet AL32UTF8 -memoryPercentage 20 -emConfiguration NONE  [FATAL] [DBT-11211] The Automatic Memory Management option is not allowed when the total physical memory is greater than 4GB.     CAUSE: The current total physical memory is 11GB.    Solution : disable automatic memory management with in the response file and you will be fine :) .       /app/oracle/product/12.2.0/dbhome_1/assistants/dbca/templates=> dbca -silent -createDatabase -templateName db_kp_template.dbt -gdbname dgtest1 -sid dgtest1 -responseFile NO_VALUE -characterSet AL32UTF8 -automaticMemoryManagement FALSE -memoryPercentage 20 -emConfiguration NONE  Enter SYS user password:   Enter SYSTEM user password:   [WARNING] [DBT-06208] The 'SYS' password entered does not conform to the Oracle recommended standards.  ...