blob: fd8efec8075445e03c7cd664a65da00600be129a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/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 ... "
cp -f $MAYORDIR/install/base/mysql/utf8.cnf /etc/mysql/conf.d
echo ok
if [ -f "/etc/init.d/mysql" ]; then
/etc/init.d/mysql restart
fi
if [ -f "/etc/init.d/mariadb" ]; then
/etc/init.d/mariadb restart
fi
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
if [ "x${RELEASE}" == "x10" ]
then
echo -e "\nMariaDB/MySQL beállítások"
echo -n " futtatom a mysql_Secure_installation scriptet: "
mysql_secure_installation
fi
if [ "x${RELEASE}" == "x11" ]
then
echo -e "\nMariaDB/MySQL beállítások"
echo -n " futtatom a mysql_secure_installation scriptet: "
mysql_secure_installation
fi
|