Advertisement
Guest User

my.cnf

a guest
Jan 9th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # The MariaDB configuration file
  2. #
  3. # The MariaDB/MySQL tools read configuration files in the following order:
  4. # 0. "/etc/mysql/my.cnf" symlinks to this file, reason why all the rest is read.
  5. # 1. "/etc/mysql/mariadb.cnf" (this file) to set global defaults,
  6. # 2. "/etc/mysql/conf.d/*.cnf" to set global options.
  7. # 3. "/etc/mysql/mariadb.conf.d/*.cnf" to set MariaDB-only options.
  8. # 4. "~/.my.cnf" to set user-specific options.
  9. #
  10. # If the same option is defined multiple times, the last one will apply.
  11. #
  12. # One can use all long options that the program supports.
  13. # Run program with --help to get a list of available options and with
  14. # --print-defaults to see which it would actually understand and use.
  15. #
  16. # If you are new to MariaDB, check out https://mariadb.com/kb/en/basic-mariadb-articles/
  17.  
  18. #
  19. # This group is read both by the client and the server
  20. # use it for options that affect everything
  21. #
  22. [client-server]
  23. # Port or socket location where to connect
  24. # port = 3306
  25. socket = /run/mysqld/mysqld.sock
  26.  
  27. # Import all .cnf files from configuration directory
  28. !includedir /etc/mysql/conf.d/
  29. !includedir /etc/mysql/mariadb.conf.d/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement