What is the alternative for Experimental/CMD in V2?

I have a mysql in the toml file, with [experimental]/cmd.

[experimental]
  cmd = [
    "--default-authentication-plugin",
    "mysql_native_password",
    "--datadir", "/data/mysql",
    "--performance-schema=OFF",
    "--innodb-buffer-pool-size", "64M"
  ]

In the “App Configuration Release” section of the documentation I see that there are the [processes] and [deploy] options, but it is not exactly what I am looking for, what would be the alternative?

Thanks

1 Like

I made it work with:

[processes]
  mysql = "--default-authentication-plugin mysql_native_password --datadir /data/mysql --performance-schema=OFF --innodb-buffer-pool-size 64M"
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.