Go to file
2024-01-01 14:52:46 +01:00
DOC Add '-DWITH_JEMALLOC=OFF' to cmake options if debian 10 (buster) and MariaDB. 2019-06-15 01:41:44 +02:00
Example Modify/add example my.cnf files. 2023-12-19 22:59:38 +01:00
OLD Save prior version of 'install_mysql.sh' at directory 'OLD'. 2019-05-05 04:03:10 +02:00
.gitignore Add support for MariaDB and Percona MySQL Server. 2018-02-26 03:40:43 +01:00
install_mysql_openssl_111.sh Add script 'install_mysql_openssl_111.sh'. Fix error creting variable 'SYSTEMD_ENV_FILE'. 2024-01-01 14:48:37 +01:00
install_mysql-5.1.sh Initial import 2017-02-19 12:27:15 +01:00
install_mysql.sh Add script 'install_mysql_openssl_111.sh'. Fix error creting variable 'SYSTEMD_ENV_FILE'. 2024-01-01 14:48:37 +01:00
README.install-openssl-1.1.1 Add file 'README.install-openssl-1.1.1'. 2024-01-01 14:52:46 +01:00
README.missing-socket-directory Add file 'README.missing-socket-directory'. 2020-05-22 01:12:59 +02:00
README.root-user Add 'README.root-user' file. 2020-06-24 12:47:29 +02:00
README.socket Add 'README.socket'. 2020-08-18 02:46:25 +02:00
remove_mariadb_installation.sh Remove also file '/etc/ld.so.conf.d/mysql.conf' if exists. 2018-02-27 18:03:40 +01:00
remove_mysql_installation.sh Remove also file '/etc/ld.so.conf.d/mysql.conf' if exists. 2018-02-27 18:03:40 +01:00
remove_percona_installation.sh Remove also file '/etc/ld.so.conf.d/mysql.conf' if exists. 2018-02-27 18:03:40 +01:00
stopwords_iso8859-15.txt Initial import 2017-02-19 12:27:15 +01:00
stopwords_utf8_iso8859-15.txt Initial import 2017-02-19 12:27:15 +01:00
stopwords_utf8.txt Initial import 2017-02-19 12:27:15 +01:00

# ---
# - Compile in default mysql soccket
# ---
cmake
   ...
   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock


# ---
# - Set socket in php.ini file
# ---

[Pdo_mysql]
; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
pdo_mysql.default_socket= /run/mysqld/mysqld.sock

[MySQLi]
; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
; http://php.net/mysqli.default-socket
mysqli.default_socket = /run/mysqld/mysqld.sock

# - Deprecated Mysql Connector
# -
[MySQL]
; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
; http://php.net/mysql.default-socket
mysql.default_socket = "/run/mysqld/mysqld.sock"