File: mysql.test

package info (click to toggle)
yasat 755-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,020 kB
  • ctags: 9
  • sloc: sh: 5,780; makefile: 47
file content (195 lines) | stat: -rw-r--r-- 6,816 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/bin/sh
################################################################################
#                                                                              #
#   Copyright (C) 2008-2014 LABBE Corentin <clabbe.montjoie@gmail.com>
#
#    YASAT is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    YASAT is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with YASAT.  If not, see <http://www.gnu.org/licenses/>.
#                                                                              #
################################################################################

#TODO check mysql_history
#TODO check ~/.my.cnf
#TODO check if DATADIR is a separate partition
#TODO SSL
#TODO check test databases (hint to remove it)
#TODO check test/guest user
#TODO check empty password and password length
#TODO skip-networking
#TODO check socket = ????
#TODO set-variable=local-infile=0 in [mysqld] http://dev.mysql.com/doc/refman/5.1/en/load-data-local.html
#TODO innodb_support_xa sync_binlog
#TODO set-variable=local-infile=0

MYSQL_CONF="/etc/mysql/my.cnf"
for LOCATION in ${POSSIBLE_MYSQL_CONF_REP}
do
	if [ -e "${LOCATION}/" ]
	then
		MYSQL_CONF="${LOCATION}"
	fi
done

Title "Check mysql"

if [ ! -e "$MYSQL_CONF" ]
then
	return 1;
fi

#TODO check includedir
FindValueOfEqual $MYSQL_CONF '!includedir' JUSTTEST
if [ ! -z "$RESULTAT" ] ; then
	Display --indent 2 --text "includedir" --result $RESULTAT --color BLUE
fi

FindValueOfEqual $MYSQL_CONF user JUSTTEST
if [ ! -z "$RESULTAT" ] ; then
	if [ "$RESULTAT" = "root" ] ; then
		Display --indent 2 --text "user" --result $RESULTAT --color RED --advice MYSQL_RUN_AS_ROOT
	else
		Display --indent 2 --text "user" --result $RESULTAT --color GREEN
		#I dont use getent because I think that mysql will be never on LDAP or such
		MYSQLSHELL=`grep "$RESULTAT" /etc/passwd | cut -d\: -f7`
		if [ `echo $MYSQLSHELL |grep 'sh' ` ]
		then
			Display --indent 2 --text "Shell de mysql $MYSQLSHELL Incorrect " --result WARNING --color RED --advice MYSQL_USER_HAVE_SHELL
		else
			Display --indent 2 --text "Shell de mysql $MYSQLSHELL Correct " --result OK --color GREEN
		fi
	fi
else
	Display --indent 2 --text "user" --result NOTFOUND --color RED
fi

#my.cnf is used by other client app than mysqld, so perhaps 644 is needed
#MYSQL_CONF_RIGHT="`stat $STAT_RIGHT $MYSQL_CONF`"
#if [ "$MYSQL_CONF_RIGHT" -ge 640 ]
#then
#        Display --indent 2 --text "Rights of $MYSQL_CONF" --result "$MYSQL_CONF_RIGHT" --color RED --advice GLOBAL_FILE_CHMOD640
#else
#        Display --indent 2 --text "Rights of $MYSQL_CONF" --result OK --color GREEN
#fi
if [ -e /etc/mysql/debian.cnf ]
then
MYSQL_CONF_RIGHT="`stat $STAT_RIGHT /etc/mysql/debian.cnf`"
	if [ "$MYSQL_CONF_RIGHT" -gt 600 ]
	then
	        Display --indent 2 --text "Rights of /etc/mysql/debian.cnf" --result "$MYSQL_CONF_RIGHT" --color RED --advice GLOBAL_FILE_CHMOD600
	else
	        Display --indent 2 --text "Rights of /etc/mysql/debian.cnf" --result OK --color GREEN
	fi
fi

#log is full log of requests,
FindValueOfEqual $MYSQL_CONF log JUSTTEST
if [ ! -z "$RESULTAT" ] ; then
	Display --indent 2 --text "log" --result FOUND --color RED --advice MYSQL_LOG
else
	Display --indent 2 --text "log" --result NOTFOUND --color GREEN
fi

CheckPresenceOf $MYSQL_CONF innodb_file_per_table JUSTTEST
if [ ! -z "$RESULTAT" ]
then
	Display --indent 2 --text "innodb_file_per_table" --result OK --color GREEN
else
	Display --indent 2 --text "No innodb_file_per_table" --result ADVICE --color ORANGE
fi

FindValueOfEqual $MYSQL_CONF bind-address JUSTTEST
if [ ! -z "$RESULTAT" ]
then
	if [ "$RESULTAT" = "127.0.0.1" ]
	then
	Display --indent 2 --text "bind-address" --result $RESULTAT --color GREEN
	else
	Display --indent 2 --text "bind-address" --result $RESULTAT --color ORANGE
	fi
else
	Display --indent 2 --text "bind-address" --result NOTFOUND --color RED --advice MYSQL_CONF_BIND
fi

#log_slow_queries        = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes


#if log-bin presence then there must be expire_logs_days
FindValueOfEqual $MYSQL_CONF log-bin JUSTTEST
if [ ! -z "`cat $MYSQL_CONF | grep '^log-bin$' `" ]
then
	RESULTAT='on'
fi
if [ ! -z "$RESULTAT" ]
then
	Display --indent 2 --text "log-bin" --result $RESULTAT --color BLUE --advice MYSQL_CONF_BINLOGS
	if [ -z "`cat $MYSQL_CONF | grep '^expire_logs_days' `" ]
	then
		Display --indent 4 --text "log-bin without expire_logs_days" --result NOTFOUND --color RED --advice MYSQL_CONF_NO_EXPIRELOGSDAYS
	else
		Display --indent 4 --text "expire_logs_days" --result FOUND --color GREEN
	fi
fi

FindValueOfEqual $MYSQL_CONF log_slow_queries JUSTTEST
if [ ! -z "$RESULTAT" ] ; then
	Display --indent 2 --text "log_slow_queries" --result $RESULTAT --color GREEN
else
	Display --indent 2 --text "log_slow_queries" --result NOTFOUND --color RED --advice MYSQL_CONF_NO_SLOWQUERY_LOG
fi

FindValueOfEqual $MYSQL_CONF innodb_support_xa JUSTTEST
if [ ! -z "$RESULTAT" ] ; then
	Display --indent 2 --text "innodb_support_xa" --result $RESULTAT --color BLUE
else
	Display --indent 2 --text "innodb_support_xa" --result NOTFOUND --color BLUE
fi

FindValueOfEqual $MYSQL_CONF sync_binlog JUSTTEST
if [ ! -z "$RESULTAT" ] ; then
	Display --indent 2 --text "sync_binlog" --result $RESULTAT --color BLUE
else
	Display --indent 2 --text "sync_binlog" --result NOTFOUND --color BLUE
fi

#Check_auto_start $MYSQLD_PACKAGE_NAME
#if [ "$RESULTAT" = 'NOTIMPLEMENTED' -o "$RESULTAT" = 'ERROR' ]
#then
#	Display --indent 2 --text "$MYSQLD_PACKAGE_NAME is started at boot" --result UNKNOWN --color BLUE
#else
#	if [ "$RESULTAT" = "yes" ]
#	then
#		Display --indent 2 --text "$MYSQLD_PACKAGE_NAME is started at boot" --result YES --color BLUE
#	else
#		Display --indent 2 --text "$MYSQLD_PACKAGE_NAME is started at boot" --result NO --color GREEN
#	fi
#fi

Is_installed_via_package_manager $MYSQLD_PACKAGE_NAME
if [ "$RESULTAT" = 'NOTIMPLEMENTED' -o "$RESULTAT" = 'ERROR' ]
then
	Display --indent 2 --text "$MYSQLD_PACKAGE_NAME installation" --result UNKNOWN --color BLUE
else
	if [ "$RESULTAT" = "yes" ]
	then
		Display --indent 2 --text "$MYSQLD_PACKAGE_NAME is installed by package" --result GOOD --color GREEN
	else
		Display --indent 2 --text "$MYSQLD_PACKAGE_NAME is installed at hand" --result BAD --color ORANGE --advice GLOBAL_PACKAGE_INSTALLED_AT_HAND
	fi
fi


return 0;