diff options
author | Daniel Black <daniel@mariadb.org> | 2022-12-15 10:32:58 +1100 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2022-12-15 10:32:58 +1100 |
commit | 802e26c3478e8e39aeacbb95edcd8f90973a6303 (patch) | |
tree | 9942becedb79dbee9ee55a95970d746866841183 /scripts | |
parent | c1fd082e9c7369f4511eb5a52e58cb15489caa74 (diff) | |
parent | fc9d350ab7beff384926d9975dee9ab52b4cfe94 (diff) | |
download | mariadb-git-802e26c3478e8e39aeacbb95edcd8f90973a6303.tar.gz |
Merge branch '10.10' into 10.11
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_install_db.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index face88c7e29..6d1471f2543 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -612,17 +612,17 @@ else echo echo " shell> $0 --defaults-file=~/.my.cnf" echo - echo "You can also try to start the mysqld daemon with:" + echo "You can also try to start the mariadbd daemon with:" echo echo " shell> $mysqld --skip-grant-tables --general-log &" echo echo "and use the command line tool $bindir/mariadb" echo "to connect to the mysql database and look at the grant tables:" echo - echo " shell> $bindir/mysql -u root mysql" - echo " mysql> show tables;" + echo " shell> $bindir/mariadb -u root mysql" + echo " MariaDB> show tables;" echo - echo "Try 'mysqld --help' if you have problems with paths. Using" + echo "Try '$mysqld --help' if you have problems with paths. Using" echo "--general-log gives you a log in $ldata that may be helpful." link_to_help echo "You can find the latest source at https://downloads.mariadb.org and" @@ -640,8 +640,8 @@ fi if test "$cross_bootstrap" -eq 0 && test -z "$srcdir" then s_echo - s_echo "To start mysqld at boot time you have to copy" - s_echo "support-files/mysql.server to the right place for your system" + s_echo "To start mariadbd at boot time you have to copy" + s_echo "support-files/mariadb.service to the right place for your system" if test "$auth_root_authentication_method" = normal then @@ -650,7 +650,7 @@ then echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !" echo "To do so, start the server, then issue the following command:" echo - echo "'$bindir/mysql_secure_installation'" + echo "'$bindir/mariadb-secure-installation'" echo echo "which will also give you the option of removing the test" echo "databases and anonymous user created by default. This is" @@ -674,10 +674,10 @@ then then echo echo "You can start the MariaDB daemon with:" - echo "cd '$basedir' ; $bindir/mysqld_safe --datadir='$ldata'" + echo "cd '$basedir' ; $bindir/mariadb-safe --datadir='$ldata'" echo echo "You can test the MariaDB daemon with mysql-test-run.pl" - echo "cd '$basedir/mysql-test' ; perl mysql-test-run.pl" + echo "cd '$basedir/@INSTALL_MYSQLTESTDIR@' ; perl mariadb-test-run.pl" fi echo |