Skip to content

Commit ecce0b3

Browse files
authored
Merge pull request #1061 from DJMuggs/master
Added support for RHSCL mysql versions and support for .mylogin.cnf for MySQL 5.6.6+
2 parents dea6e47 + 2a8c39b commit ecce0b3

File tree

7 files changed

+164
-5
lines changed

7 files changed

+164
-5
lines changed

README.md

+111
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ If you set the sql parameter to a file when creating a database, the file is imp
127127

128128
For large sql files, increase the `import_timeout` parameter, which defaults to 300 seconds.
129129

130+
If you have installed the mysql client in a non standard bin/sbin path you can set this with `mysql_exec_path` .
131+
130132
```puppet
131133
mysql::db { 'mydb':
132134
user => 'myuser',
@@ -136,6 +138,7 @@ mysql::db { 'mydb':
136138
sql => '/path/to/sqlfile.gz',
137139
import_cat_cmd => 'zcat',
138140
import_timeout => 900,
141+
mysql_exec_path => '/opt/rh/rh-myql57/root/bin'
139142
}
140143
```
141144

@@ -386,6 +389,114 @@ mysql::server::db:
386389
### Install Plugins
387390

388391
Plugins can be installed by using the `mysql_plugin` defined type. See `examples/mysql_plugin.pp` for futher examples.
392+
## Reference
393+
394+
### Classes
395+
396+
#### Public classes
397+
398+
* [`mysql::server`](#mysqlserver): Installs and configures MySQL.
399+
* [`mysql::server::monitor`](#mysqlservermonitor): Sets up a monitoring user.
400+
* [`mysql::server::mysqltuner`](#mysqlservermysqltuner): Installs MySQL tuner script.
401+
* [`mysql::server::backup`](#mysqlserverbackup): Sets up MySQL backups via cron.
402+
* [`mysql::bindings`](#mysqlbindings): Installs various MySQL language bindings.
403+
* [`mysql::client`](#mysqlclient): Installs MySQL client (for non-servers).
404+
405+
#### Private classes
406+
407+
* `mysql::server::install`: Installs packages.
408+
* `mysql::server::installdb`: Implements setup of mysqld data directory (e.g. /var/lib/mysql)
409+
* `mysql::server::config`: Configures MYSQL.
410+
* `mysql::server::service`: Manages service.
411+
* `mysql::server::account_security`: Deletes default MySQL accounts.
412+
* `mysql::server::root_password`: Sets MySQL root password.
413+
* `mysql::server::providers`: Creates users, grants, and databases.
414+
* `mysql::bindings::client_dev`: Installs MySQL client development package.
415+
* `mysql::bindings::daemon_dev`: Installs MySQL daemon development package.
416+
* `mysql::bindings::java`: Installs Java bindings.
417+
* `mysql::bindings::perl`: Installs Perl bindings.
418+
* `mysql::bindings::php`: Installs PHP bindings.
419+
* `mysql::bindings::python`: Installs Python bindings.
420+
* `mysql::bindings::ruby`: Installs Ruby bindings.
421+
* `mysql::client::install`: Installs MySQL client.
422+
* `mysql::backup::mysqldump`: Implements mysqldump backups.
423+
* `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.
487+
488+
```puppet
489+
class { '::mysql::server':
490+
root_password => 'password',
491+
create_root_my_cnf => false,
492+
create_root_login_file => true,
493+
login_file => "puppet:///modules/${module_name}/mylogin.cnf",
494+
}
495+
```
496+
497+
##### `override_options`
498+
499+
Specifies override options to pass into MySQL. Structured like a hash in the my.cnf file:
389500

390501
```puppet
391502
class { 'mysql::server':

lib/puppet/provider/mysql.rb

+35-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ class Puppet::Provider::Mysql < Puppet::Provider
55

66
# Make sure we find mysql commands on CentOS and FreeBSD
77
ENV['PATH'] = ENV['PATH'] + ':/usr/libexec:/usr/local/libexec:/usr/local/bin'
8+
ENV['LD_LIBRARY_PATH'] = [
9+
ENV['LD_LIBRARY_PATH'],
10+
'/usr/lib',
11+
'/usr/lib64',
12+
'/opt/rh/rh-mysql56/root/usr/lib',
13+
'/opt/rh/rh-mysql56/root/usr/lib64',
14+
'/opt/rh/rh-mysql57/root/usr/lib',
15+
'/opt/rh/rh-mysql57/root/usr/lib64',
16+
'/opt/rh/rh-mariadb100/root/usr/lib',
17+
'/opt/rh/rh-mariadb100/root/usr/lib64',
18+
'/opt/rh/rh-mariadb101/root/usr/lib',
19+
'/opt/rh/rh-mariadb101/root/usr/lib64',
20+
'/opt/rh/mysql55/root/usr/lib',
21+
'/opt/rh/mysql55/root/usr/lib64',
22+
'/opt/rh/mariadb55/root/usr/lib',
23+
'/opt/rh/mariadb55/root/usr/lib64',
24+
'/usr/mysql/5.5/lib',
25+
'/usr/mysql/5.5/lib64',
26+
'/usr/mysql/5.6/lib',
27+
'/usr/mysql/5.6/lib64',
28+
'/usr/mysql/5.7/lib',
29+
'/usr/mysql/5.7/lib64',
30+
].join(':')
831

932
# rubocop:disable Style/HashSyntax
1033
commands :mysql_raw => 'mysql'
@@ -64,9 +87,19 @@ def defaults_file
6487

6588
def self.mysql_caller(text_of_sql, type)
6689
if type.eql? 'system'
67-
mysql_raw([defaults_file, system_database, '-e', text_of_sql].flatten.compact)
90+
if File.file?("#{Facter.value(:root_home)}/.mylogin.cnf")
91+
ENV['MYSQL_TEST_LOGIN_FILE'] = "#{Facter.value(:root_home)}/.mylogin.cnf"
92+
mysql_raw(['--host=', system_database, '-e', text_of_sql].flatten.compact)
93+
else
94+
mysql_raw([defaults_file, '--host=', system_database, '-e', text_of_sql].flatten.compact)
95+
end
6896
elsif type.eql? 'regular'
69-
mysql_raw([defaults_file, '-NBe', text_of_sql].flatten.compact)
97+
if File.file?("#{Facter.value(:root_home)}/.mylogin.cnf")
98+
ENV['MYSQL_TEST_LOGIN_FILE'] = "#{Facter.value(:root_home)}/.mylogin.cnf"
99+
mysql_raw(['-NBe', text_of_sql].flatten.compact)
100+
else
101+
mysql_raw([defaults_file, '-NBe', text_of_sql].flatten.compact)
102+
end
70103
else
71104
raise Puppet::Error, _("#mysql_caller: Unrecognised type '%{type}'" % { type: type })
72105
end

manifests/db.pp

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
Enum['absent', 'present'] $ensure = 'present',
5454
$import_timeout = 300,
5555
$import_cat_cmd = 'cat',
56+
$mysql_exec_path = $mysql::params::exec_path,
5657
) {
5758

5859
$table = "${dbname}.*"
@@ -98,7 +99,7 @@
9899
logoutput => true,
99100
environment => "HOME=${::root_home}",
100101
refreshonly => $refresh,
101-
path => '/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin',
102+
path => "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:${mysql_exec_path}",
102103
require => Mysql_grant["${user}@${host}/${table}"],
103104
subscribe => Mysql_database[$dbname],
104105
timeout => $import_timeout,

manifests/params.pp

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
$client_package_manage = true
1919
$create_root_user = true
2020
$create_root_my_cnf = true
21+
$create_root_login_file = false
22+
$login_file = undef
23+
$exec_path = ''
2124
# mysql::bindings
2225
$bindings_enable = false
2326
$java_package_ensure = 'present'

manifests/server.pp

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@
8686
$service_provider = $mysql::params::server_service_provider,
8787
$create_root_user = $mysql::params::create_root_user,
8888
$create_root_my_cnf = $mysql::params::create_root_my_cnf,
89+
$create_root_login_file = $mysql::params::create_root_login_file,
90+
$login_file = $mysql::params::login_file,
8991
$users = {},
9092
$grants = {},
9193
$databases = {},

manifests/server/root_password.pp

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
$options = $mysql::server::options
99
$secret_file = $mysql::server::install_secret_file
10+
$login_file = $mysql::server::login_file
1011

1112
# New installations of MySQL will configure a default random password for the root user
1213
# with an expiration. No actions can be performed until this password is changed. The
@@ -47,4 +48,11 @@
4748
}
4849
}
4950

51+
if $mysql::server::create_root_login_file == true and $mysql::server::root_password != 'UNSET' {
52+
file { "${::root_home}/.mylogin.cnf":
53+
source => $login_file,
54+
owner => 'root',
55+
mode => '0600',
56+
}
57+
}
5058
}

spec/defines/mysql_db_spec.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
let(:title) { 'test_db' }
1111

1212
let(:params) do
13-
{ 'user' => 'testuser',
14-
'password' => 'testpass' }
13+
{ 'user' => 'testuser',
14+
'password' => 'testpass',
15+
'mysql_exec_path' => '' }
1516
end
1617

1718
it 'does not notify the import sql exec if no sql script was provided' do

0 commit comments

Comments
 (0)