You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`mysql::backup::mysqlbackup`: Implements backups with Oracle MySQL Enterprise Backup.
424
+
*`mysql::backup::xtrabackup`: Implements backups with XtraBackup from Percona.
425
+
426
+
### Parameters
427
+
428
+
#### mysql::server
429
+
430
+
##### `create_root_user`
431
+
432
+
Whether root user should be created.
433
+
434
+
Valid values are `true`, `false`.
435
+
436
+
Defaults to `true`.
437
+
438
+
This is useful for a cluster setup with Galera. The root user has to be created only once. You can set this parameter true on one node and set it to false on the remaining nodes.
439
+
440
+
##### `create_root_my_cnf`
441
+
442
+
Whether to create `/root/.my.cnf`.
443
+
444
+
Valid values are `true`, `false`.
445
+
446
+
Defaults to `true`.
447
+
448
+
`create_root_my_cnf` allows creation of `/root/.my.cnf` independently of `create_root_user`. You can use this for a cluster setup with Galera where you want `/root/.my.cnf` to exist on all nodes.
449
+
450
+
##### `root_password`
451
+
452
+
The MySQL root password. Puppet attempts to set the root password and update `/root/.my.cnf` with it.
453
+
454
+
This is required if `create_root_user` or `create_root_my_cnf` are true. If `root_password` is 'UNSET', then `create_root_user` and `create_root_my_cnf` are assumed to be false --- that is, the MySQL root user and `/root/.my.cnf` are not created.
455
+
456
+
Password changes are supported; however, the old password must be set in `/root/.my.cnf`. Effectively, Puppet uses the old password, configured in `/root/my.cnf`, to set the new password in MySQL, and then updates `/root/.my.cnf` with the new password.
457
+
458
+
##### `old_root_password`
459
+
460
+
This parameter no longer does anything. It exists only for backwards compatibility. See the `root_password` parameter above for details on changing the root password.
461
+
462
+
##### `create_root_login_file`
463
+
464
+
Whether to create `/root/.mylogin.cnf` when using mysql 5.6.6+.
465
+
466
+
Valid values are `true`, `false`.
467
+
468
+
Defaults to `false`.
469
+
470
+
`create_root_login_file` will put a copy of your existing `.mylogin.cnf` in the `/root/.mylogin.cnf` location.
471
+
472
+
When set to 'true', this option also requires the `login_file` option.
473
+
474
+
The `login_file` option is required when set to true.
475
+
476
+
#### `login_file`
477
+
478
+
Whether to put the `/root/.mylogin.cnf` in place.
479
+
480
+
You need to create the `.mylogin.cnf` file with `mysql_config_editor`, this tool comes with mysql 5.6.6+.
481
+
482
+
The created .mylogin.cnf needs to be put under files in your module, see example below on how to use this.
483
+
484
+
When the `/root/.mylogin.cnf` exists the environment variable `MYSQL_TEST_LOGIN_FILE` will be set.
485
+
486
+
This is required if `create_root_user` and `create_root_login_file` are true. If `root_password` is 'UNSET', then `create_root_user` and `create_root_login_file` are assumed to be false --- that is, the MySQL root user and `/root/.mylogin.cnf` are not created.
0 commit comments