diff options
author | Otto Kekäläinen <otto@kekalainen.net> | 2020-06-11 01:39:11 +0300 |
---|---|---|
committer | Robert Bindar <robert@mariadb.org> | 2020-06-16 12:59:30 +0300 |
commit | 7803601dcb8e40746a10a4012b0c8eb08274db3e (patch) | |
tree | dd1a62a732fa38788a98abed41387f55cc101efd /support-files/binary-configure.sh | |
parent | e290e5a75d0c2b12133c2ed118e3bc9bd26a266d (diff) | |
download | mariadb-git-7803601dcb8e40746a10a4012b0c8eb08274db3e.tar.gz |
MDEV-22569: Run bin/mariadbd instead of bin/mysqld
Replace all references to /usr/sbin/mysqld (and bin and libexec) with
mariadbd, so that the binary server will always be 'mariadbd'.
Also update all places that reference the server binary in other ways,
such as AppArmor profiles and scripts that previously expected to find
a 'mysqld' in process lists.
Diffstat (limited to 'support-files/binary-configure.sh')
-rw-r--r-- | support-files/binary-configure.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/binary-configure.sh b/support-files/binary-configure.sh index 5e6d62f69a0..47123668683 100644 --- a/support-files/binary-configure.sh +++ b/support-files/binary-configure.sh @@ -41,7 +41,7 @@ echo "" ./scripts/mysql_install_db --no-defaults if [ $? = 0 ] then - echo "Starting the mysqld server. You can test that it is up and running" + echo "Starting the mariadbd server. You can test that it is up and running" echo "with the command:" echo "./bin/mysqladmin version" ./bin/mysqld_safe --no-defaults & |