mysql - No matching server found with minimum required memory for the node [AppServer] on DCHQ -


i trying run app on dchq platform, these vm configurations on azure cloud

cpu 2 memory 3gb disk 162gb

this yaml

appserver:    image: websphere-liberty:webprofile6    publish_all: true    mem_min: 20000m    host: host1    cluster_size: 1    environment:      - database_driverclassname=com.mysql.jdbc.driver      - database_url=jdbc:mysql://{{mysql|container_ip}}:3306/{{mysql|mysql_database}}      - database_username={{mysql|mysql_user}}      - database_password={{mysql|mysql_root_password}}      - license=accept  mysql:    image: mysql:latest    host: host1    mem_min: 9000m    environment:      - mysql_user=root      - mysql_database=names      - mysql_root_password={{alphanumeric|8}}

i see error:

no matching server found minimum required memory node [appserver]

the memory under 3gb, possibly i'm doing wrong?

it's typo. 20000m 20gb, not 2gb.

(similar typo in other section)


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -