diff options
author | M.Gergo | 2018-03-28 20:55:57 +0200 |
---|---|---|
committer | M.Gergo | 2018-03-28 20:55:57 +0200 |
commit | 421914473feb547f5e16e7fe3c6945e8758e7160 (patch) | |
tree | a099caeb4cd8e9b86af40fcd4d6acad2fcfccb40 /mayor-installer-fcgi/fcgi_install.d/20mysql.sh | |
parent | 8e3d4bca1304fab45d4d52111a8d08ca3bd29280 (diff) | |
download | mayor-421914473feb547f5e16e7fe3c6945e8758e7160.tar.gz mayor-421914473feb547f5e16e7fe3c6945e8758e7160.zip |
installer fcgi
Diffstat (limited to 'mayor-installer-fcgi/fcgi_install.d/20mysql.sh')
-rwxr-xr-x | mayor-installer-fcgi/fcgi_install.d/20mysql.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/mayor-installer-fcgi/fcgi_install.d/20mysql.sh b/mayor-installer-fcgi/fcgi_install.d/20mysql.sh new file mode 100755 index 00000000..7ae70bfb --- /dev/null +++ b/mayor-installer-fcgi/fcgi_install.d/20mysql.sh @@ -0,0 +1,34 @@ +#!/bin/bash +# + +cat <<EOF +MySQL szerver beállításai + +A rendszer adatbázisai UTF-8 kódolásúak, ennek megfelelően kell +beállítani a MySQL-t is. A beállításokat a /etc/mysql/conf.d +alá helyezi el a telepítő utf8.cnf néven, majd újraindítja az +adatbázis szervert. + +EOF + +read -n 1 -p "A MySQL szerver beállításait módosíthatom? (i/N)" -s DO +if [ "$DO" != "i" ]; then echo -e "\nA MySQL beállításait nem módosítottam.\n"; exit 1; fi + +echo -e "\nMySQL beállítások" +echo -n " utf8.cnf ... " + +echo "[mysqld] + character-set-server = utf8 + collation-server = utf8_hungarian_ci + " > /etc/mysql/conf.d/utf8.cnf + +#cp -f $MAYORDIR/install/base/mysql/utf8.cnf /etc/mysql/conf.d +echo ok +/etc/init.d/mysql restart + +if [ "x${RELEASE}" == "x9" ] +then + echo -e "\nMariaDB/MySQL beállítások" + echo -n " futtatom a mysql_Secure_installation scriptet: " + mysql_secure_installation +fi |