-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use Shib IDP v4 * Installed package changes to support Rocky Linux 8 * Additional php packages and configuration to support php apps and fcgi * mysql max_connections 750 * Openldap defaults to mdb instead of hdb * Curl does not have built-in ldap support, so use netcat for ping tests
- Loading branch information
Showing
17 changed files
with
385 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| # | ||
| # These groups are read by MariaDB server. | ||
| # Use it for options that only the server (but not clients) should see | ||
| # | ||
| # See the examples of server my.cnf files in /usr/share/mysql/ | ||
| # | ||
|
|
||
| # this is read by the standalone daemon and embedded servers | ||
| [server] | ||
|
|
||
| # this is only for the mysqld standalone daemon | ||
| # Settings user and group are ignored when systemd is used. | ||
| # If you need to run mysqld under a different user or group, | ||
| # customize your systemd unit file for mysqld/mariadb according to the | ||
| # instructions in http://fedoraproject.org/wiki/Systemd | ||
| [mysqld] | ||
| datadir=/var/lib/mysql | ||
| socket=/var/lib/mysql/mysql.sock | ||
| log-error=/var/log/mariadb/mariadb.log | ||
| pid-file=/run/mariadb/mariadb.pid | ||
| max_connections = 750 | ||
|
|
||
|
|
||
| # | ||
| # * Galera-related settings | ||
| # | ||
| [galera] | ||
| # Mandatory settings | ||
| #wsrep_on=ON | ||
| #wsrep_provider= | ||
| #wsrep_cluster_address= | ||
| #binlog_format=row | ||
| #default_storage_engine=InnoDB | ||
| #innodb_autoinc_lock_mode=2 | ||
| # | ||
| # Allow server to accept connections on all interfaces. | ||
| # | ||
| bind-address=0.0.0.0 | ||
| # | ||
| # Optional setting | ||
| #wsrep_slave_threads=1 | ||
| #innodb_flush_log_at_trx_commit=0 | ||
|
|
||
| # this is only for embedded server | ||
| [embedded] | ||
|
|
||
| # This group is only read by MariaDB servers, not by MySQL. | ||
| # If you use the same .cnf file for MySQL and MariaDB, | ||
| # you can put MariaDB-only options here | ||
| [mariadb] | ||
|
|
||
| # This group is only read by MariaDB-10.3 servers. | ||
| # If you use the same .cnf file for MariaDB of different versions, | ||
| # use this group for options that older servers don't understand | ||
| [mariadb-10.3] | ||
|
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.