I'm trying to set some innodb settings when starting mysql on the command line:
mysql -p*password* --skip-innodb_doublewrite
mysql -p*password* --innodb_flush_log_at_trx_commit=2
Which appear to be possible from the MySQL docs:
Command-Line Format
--innodb-doublewrite... This variable can be turned off with--skip-innodb_doublewriteCommand-Line Format
--innodb_flush_log_at_trx_commit[=#]
However, when executing I get:
mysql: unknown option '--skip-innodb_doublewrite'
mysql: unknown variable 'innodb_flush_log_at_trx_commit=0'
What's going on? Have I completely missinterpreted the docs?
I'm using MySQL 5.5.45
mysqldstartup, notmysql.