Go to file
2020-08-18 01:56:12 +02:00
DOC Add '-DWITH_JEMALLOC=OFF' to cmake options if debian 10 (buster) and MariaDB. 2019-06-15 01:41:44 +02:00
Example Add suport for MariaDB 10.4. Compile with default charset utf8. 2019-07-02 15:36:52 +02: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-5.1.sh Initial import 2017-02-19 12:27:15 +01:00
install_mysql.sh install_mysql.sh: compile with '-DMYSQL_UNIX_ADDR='. 2020-08-18 01:56:12 +02: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
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

# The root@localhost user account created by mysql_install_db is created with the 
# ability to use two authentication plugins. 
#
# First, it is configured to try to use the unix_socket authentication plugin. This 
# allows the root@localhost user to login without a password via the local Unix 
# socket file defined by the socket system variable, as long as the login is 
# attempted from a process owned by the operating system root user account. 
#
#   CREATE USER root@localhost IDENTIFIED VIA unix_socket OR mysql_native_password USING 'invalid'
#   CREATE USER mysql@localhost IDENTIFIED VIA unix_socket OR mysql_native_password USING 'invalid'
#

# We can do:
#
ALTER USER root@localhost IDENTIFIED VIA unix_socket OR mysql_native_password USING PASSWORD('$MYSQL_ROOT_PW'