Advertisement
Guest User

my.cnf

a guest
Oct 30th, 2021
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | None | 0 0
  1. # The MariaDB configuration file
  2. #
  3. # The MariaDB/MySQL tools read configuration files in the following order:
  4. # 1. "/etc/mysql/mariadb.cnf" (this file) to set global defaults,
  5. # 2. "/etc/mysql/conf.d/*.cnf" to set global options.
  6. # 3. "/etc/mysql/mariadb.conf.d/*.cnf" to set MariaDB-only options.
  7. # 4. "~/.my.cnf" to set user-specific options.
  8. #
  9. # If the same option is defined multiple times, the last one will apply.
  10. #
  11. # One can use all long options that the program supports.
  12. # Run program with --help to get a list of available options and with
  13. # --print-defaults to see which it would actually understand and use.
  14.  
  15. #
  16. # This group is read both both by the client and the server
  17. # use it for options that affect everything
  18. #
  19. [client-server]
  20.  
  21. # Import all .cnf files from configuration directory
  22. !includedir /etc/mysql/conf.d/
  23. !includedir /etc/mysql/mariadb.conf.d/
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement