]> git.pld-linux.org Git - packages/mysql.git/blob - mysql.init
Separate dirs for major ver
[packages/mysql.git] / mysql.init
1 #!/bin/sh
2 #
3 # mysql{MYSQL_MAJOR}            A very fast and reliable SQL database engine
4 #
5 # chkconfig:    2345 84 25
6 #
7 # description:  A very fast and reliable SQL database engine.
8
9 # Source function library
10 . /etc/rc.d/init.d/functions
11
12 # Get network config
13 . /etc/sysconfig/network
14
15 # Get service config
16 if [ -f /etc/sysconfig/mysql{MYSQL_MAJOR} ]; then
17         . /etc/sysconfig/mysql{MYSQL_MAJOR}
18 else
19         nls "Error: %s not found" /etc/sysconfig/mysql{MYSQL_MAJOR}
20         nls "%s can't be run." MySQL{MYSQL_MAJOR}
21         exit 1
22 fi
23
24 if [ -n "$MYSQL_DB_CLUSTERS" ]; then
25         nls "Warning: MYSQL_DB_CLUSTERS is set. It's obsolete. Use %s instead." /etc/mysql{MYSQL_MAJOR}/clusters.conf
26 fi
27
28 if [ -f /etc/mysql{MYSQL_MAJOR}/clusters.conf ]; then
29         MYSQL_DB_CLUSTERS=$(awk -F= '!/^#/ && /=/{print $2}' /etc/mysql{MYSQL_MAJOR}/clusters.conf)
30         if [ -z "$MYSQL_DB_CLUSTERS" ]; then
31                 nls "Warning: there are no configured clusters."
32         fi
33
34 else
35         nls "Warning: Missing clusters config file %s" /etc/mysql{MYSQL_MAJOR}/clusters.conf
36         if [ -z "$MYSQL_DB_CLUSTERS" ]; then
37                 nls "Warning: there are no configured clusters."
38                 nls "Using default cluster /var/lib/mysql{MYSQL_MAJOR} (compatibility mode)"
39                 MYSQL_DB_CLUSTERS=/var/lib/mysql{MYSQL_MAJOR}
40         fi
41 fi
42
43
44 # Check that networking is up
45 if is_yes "${NETWORKING}"; then
46         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status -a "$1" != init ]; then
47                 msg_network_down MySQL{MYSQL_MAJOR}
48                 exit 1
49         fi
50 else
51         exit 0
52 fi
53
54 sharedir=/usr/share/mysql{MYSQL_MAJOR}
55
56 action="$1"
57
58 # any db cluster as command line argument?
59 if [ $# -gt 1 ]; then
60         shift
61         # perform action for specified clusters only
62         for a in "$@"; do
63                 # try auto resolving from /etc/mysql{MYSQL_MAJOR}/clusters.conf
64                 if [[ "$a" != /* ]]; then
65                         m=$(awk -va="$a" -F= 'substr($0, 1, length(a)) == a {print $1}' /etc/mysql{MYSQL_MAJOR}/clusters.conf)
66                         if [ -z "$m" ]; then
67                                 echo >&2 "Cluster name '$a' did not match anything!"
68                                 exit 1
69                         fi
70                         if [ $(echo "$m" | wc -l) -gt 1 ]; then
71                                 echo >&2 "Cluster name '$a' ambiguous:" $m
72                                 exit 1
73                         fi
74                         a=$(awk -va="$a" -F= 'substr($0, 1, length(a)) == a {print $2}' /etc/mysql{MYSQL_MAJOR}/clusters.conf)
75                 fi
76                 DB_CLUSTERS="$DB_CLUSTERS $a"
77         done
78 else
79         DB_CLUSTERS="$MYSQL_DB_CLUSTERS"
80 fi
81
82 # global error log, if mysqld.conf hasn't migrated to log-error style
83 MYSQL_ERRLOG=/var/log/mysql{MYSQL_MAJOR}/mysqld.log
84 MYSQL_STOP_WAIT_TIME=${MYSQL_STOP_WAIT_TIME:-900}
85
86 #
87 # Useful functions.
88 #
89
90 #
91 # check for mysql status
92 #
93 # arguments:
94 # $1 - db cluster
95 # $2 - start|stop
96 #
97 # sets variables:
98 # MYSQL_STATUS = starting | running | not running | died
99 # MYSQL_PID    = pid of mysqld process
100 #
101 mysqlstatus() {
102         clusterdir="$1"
103         mode="$2"
104         
105         mysqlgetconfig "$clusterdir" status
106
107         MYSQL_STATUS="not running"
108         MYSQL_PID="unknown"
109         MYSQL_PIDFILE_PID=""
110         MYSQL_GREP_PID=""
111
112         if [ -f "$MYSQL_PIDFILE" ]; then
113                 MYSQL_PIDFILE_PID=$(cat "$MYSQL_PIDFILE")
114         fi
115         
116         if [ -n "$MYSQL_PIDFILE_PID" ]; then
117                 MYSQL_PID=$MYSQL_PIDFILE_PID
118                 if [ ! -d "/proc/$MYSQL_PID" ]; then
119                         MYSQL_STATUS="died"
120                         return
121                 elif (grep -qa "$MYSQL_PIDFILE" /proc/$MYSQL_PID/cmdline 2> /dev/null); then
122                         MYSQL_STATUS="running"
123                         return
124                 fi
125         fi
126
127         if [ "$mode" = "start" ]; then
128                 MYSQL_GREP_PID=$(grep -alE "^/usr/sbin/mysqld{MYSQL_MAJOR}.*${MYSQL_PIDFILE}" /proc/[0-9]*/cmdline 2> /dev/null | awk -F "/" '{ print $3; exit; }')
129                 if [ -n "$MYSQL_GREP_PID" ]; then
130                         MYSQL_PID=$MYSQL_GREP_PID
131                         if grep -qa "$MYSQL_PIDFILE" /proc/$MYSQL_PID/cmdline 2> /dev/null; then
132                                 if [ -f "$MYSQL_PIDFILE" ]; then
133                                         MYSQL_PIDFILE_PID=$(cat "$MYSQL_PIDFILE")
134                                 fi
135                                 if [ -n "$MYSQL_PIDFILE_PID" ]; then
136                                         MYSQL_PID=$MYSQL_PIDFILE_PID
137                                         MYSQL_STATUS="running"
138                                         return
139                                 else
140                                         MYSQL_STATUS="starting"
141                                         return
142                                 fi
143                         fi
144                 fi
145         fi
146
147         # else default, "not running"
148 }
149
150 # get mysql configuration in variables
151 # MYSQL_CONFIG MYSQL_CLUSTER_DIR
152 # MYSQL_DATA_DIR MYSQL_USER MYSQL_PIDFILE MYSQL_SOCKET MYSQL_PORT MYSQL_BIND_ADDRESS MYSQL_SKIP_NETWORKING MYSQL_LOG_ERROR
153 #
154 # arguments
155 # $1 - db cluster
156 # $2 - status | other
157
158 mysqlgetconfig() {
159         local clusterdir="$1" config_file
160         local mode="$2"
161
162         local config=$(awk -F= -vclusterdir="$clusterdir" '!/^#/{ if (clusterdir == $2) print $1}' /etc/mysql{MYSQL_MAJOR}/clusters.conf)
163         if [[ $config = /* ]]; then
164                 config_file="$config"
165         elif [ -f "/etc/mysql{MYSQL_MAJOR}/$config" ]; then
166                 config_file="/etc/mysql{MYSQL_MAJOR}/$config"
167         else
168                 config_file="$clusterdir/mysqld.conf"
169         fi
170
171         MYSQL_CLUSTER_DIR="$clusterdir"
172
173         if [ -z "$config_file" ]; then
174                 nls "Error: Can't find config file for %s cluster" "$clusterdir"
175                 if [ "$mode" = "status" ]; then 
176                         exit 3
177                 else
178                         exit 6
179                 fi
180         else
181                 MYSQL_CONFIG="$config_file"
182         fi
183
184         if [ ! -f "$config_file" ]; then
185                 nls "Error: config file %s not found" "$config_file"
186                 nls "MySQL{MYSQL_MAJOR} can't be run. Did you initialize DB by doing \`$0 init'?"
187                 if [ "$mode" = "status" ]; then 
188                         exit 3
189                 else
190                         exit 6
191                 fi
192         fi
193
194         # reset to initial state
195         MYSQL_DATA_DIR= MYSQL_USER= MYSQL_PIDFILE= MYSQL_SOCKET= MYSQL_PORT= MYSQL_BIND_ADDRESS= MYSQL_SKIP_NETWORKING= MYSQL_LOG_ERROR=
196
197         eval `awk -F= '
198         {
199                 # undos
200                 gsub(/\r$/, "");
201
202                 # trim spaces
203                 gsub(/^[\t ]+|[\t ]+$/, "", $1);
204                 gsub(/^[\t ]+|[\t ]+$/, "", $2);
205         }
206
207         # skip comments and empty lines
208         /^[;#]|^ *$/ { next }
209
210         /^[ \t]*\[.*\][ \t]*$/ {
211                 match($0, /\[.*\]/);
212                 section = substr($0, RSTART + 1, RSTART + RLENGTH - 3);
213                 next;
214         }
215
216         section == "mysqld" {
217                 if ($1 == "datadir") {
218                         printf("MYSQL_DATA_DIR=%s;", $2);
219                 } else if ($1 == "user") {
220                         printf("MYSQL_USER=%s;", $2);
221                 } else if ($1 == "pid-file") {
222                         printf("MYSQL_PIDFILE=%s;", $2);
223                 } else if ($1 == "socket") {
224                         printf("MYSQL_SOCKET=%s;", $2);
225                 } else if ($1 == "port") {
226                         printf("MYSQL_PORT=%s;", $2);
227                 } else if ($1 == "bind-address") {
228                         printf("MYSQL_BIND_ADDRESS=%s;", $2);
229                 } else if ($1 == "skip-networking") {
230                         printf("MYSQL_SKIP_NETWORKING=1;");
231                 } else if ($1 == "log-error") {
232                         printf("MYSQL_LOG_ERROR=%s;", $2);
233                 }
234         }
235         ' $config_file`
236
237         # error log not defined in config file. add one
238         if [ -z "$MYSQL_LOG_ERROR" ]; then
239                 MYSQL_LOG_ERROR=$MYSQL_ERRLOG
240         else
241                 # unset, so mysqld would use value from config itself
242                 unset MYSQL_LOG_ERROR
243         fi
244
245         MYSQL_DATA_DIR_SUB="/mysqldb"
246
247         if [ -z "$MYSQL_DATA_DIR" -o "$MYSQL_DATA_DIR" != "${clusterdir}${MYSQL_DATA_DIR_SUB}/db" ]; then
248                 nls "Error: datadir specified in %s should be %s" "$config_file" "$clusterdir${MYSQL_DATA_DIR_SUB}/db"
249                 nls " MySQL can't be run."
250                 exit 6
251         fi
252
253         if [ -z "$MYSQL_PIDFILE" -o "$MYSQL_PIDFILE" != "$clusterdir${MYSQL_DATA_DIR_SUB}/mysql.pid" ]; then
254                 nls "Error: pid-file specified in %s should be %s" "$config_file" "$clusterdir${MYSQL_DATA_DIR_SUB}/mysql.pid"
255                 nls " MySQL can't be run."
256                 exit 6
257         fi
258
259         if [ -z "$MYSQL_USER" ]; then
260                 echo "$(nls 'MySQL{MYSQL_MAJOR} user not configured properly')"'!' >&2
261                 nls "Edit %s and configure it." "$config_file" >&2
262                 exit 6
263         fi
264 }
265
266 # start mysql
267 mysqlstart() {
268         local clusterdir="$1"
269         mysqlgetconfig "$clusterdir"
270         if [ ! -d "$MYSQL_DATA_DIR/mysql" ]; then
271                 nls "MySQL{MYSQL_MAJOR} cluster %s not initialized." "$clusterdir"
272                 nls "Try \`%s init %s' before start." "$0" "$clusterdir"
273                 exit 6
274         fi
275
276         msg_starting "MySQL{MYSQL_MAJOR} $clusterdir"; busy
277         [ -z "$DEFAULT_SERVICE_RUN_NICE_LEVEL" ] && DEFAULT_SERVICE_RUN_NICE_LEVEL=0
278         rm -f "$MYSQL_PIDFILE"
279
280
281         TMPDIR=/tmp nice -n ${SERVICE_RUN_NICE_LEVEL:-$DEFAULT_SERVICE_RUN_NICE_LEVEL} \
282                 /usr/bin/setsid /usr/sbin/mysqld{MYSQL_MAJOR} \
283                         --defaults-file=$MYSQL_CONFIG \
284                         --datadir=$MYSQL_DATA_DIR \
285                         --pid-file=$MYSQL_PIDFILE \
286                         ${MYSQL_LOG_ERROR:+--log-error="$MYSQL_LOG_ERROR"} \
287                         $MYSQL_OPTIONS &
288         pid=$!
289
290         sleep 0.1
291         mysqlstatus "$clusterdir" start
292         # it takes longer for mysqld to start and create pidfile if it has to recover innodb transactions
293         if [ "$MYSQL_STATUS" = "starting" ]; then
294                 echo ""
295                 show "Waiting for MySQL{MYSQL_MAJOR} to start"
296                 busy
297
298                 # while the pid is running, mysql is starting up
299                 # if the pidfile was created, it started up successfully
300                 # if either case fails we break and report status
301                 while true; do
302                         [ -d /proc/$pid ] || break
303                         [ -f "$MYSQL_PIDFILE" ] && break
304                         sleep 0.2
305                 done
306         fi
307
308         mysqlstatus "$clusterdir" start
309         if [ "$MYSQL_STATUS" = "running" -a "$MYSQL_PID" != "unknown" ]; then
310                 ok
311         elif [ "$MYSQL_STATUS" = "died" ]; then
312                 RETVAL=1
313                 died
314         else
315                 RETVAL=1
316                 fail
317         fi
318 }
319
320 # stop mysql
321 mysqlstop() {
322         local clusterdir="$1"
323         mysqlstatus "$clusterdir" stop
324         msg_stopping "MySQL $clusterdir"
325         busy
326
327         # try graceful shutdown -- send shutdown command
328         # requires mysql_sysadmin user proper privs
329         /usr/bin/mysqladmin{MYSQL_MAJOR} --defaults-file=$MYSQL_CONFIG ${MYSQL_SOCKET:+--socket=$MYSQL_SOCKET} shutdown >/dev/null 2>&1
330         mysqlstatus "$clusterdir" stop
331
332         if [ "$MYSQL_PID" != "unknown" ]; then
333                 kill -TERM "$MYSQL_PID" 2> /dev/null
334                 for nr in $(seq 1 $(($MYSQL_STOP_WAIT_TIME*10))); do
335                         [ -d "/proc/$MYSQL_PID" ] || break
336                         sleep 0.1
337                 done
338         fi
339         
340         mysqlstatus "$clusterdir" stop
341         if [ "$MYSQL_STATUS" = "died" ]; then
342                 died
343         elif [ "$MYSQL_STATUS" = "running" -o "$MYSQL_STATUS" = "starting" ]; then
344                 fail
345         else
346                 ok
347         fi
348 }
349
350 # report slave status
351 # uses MYSQL_SOCKET - path to mysql socket
352 slave_status() {
353         if [ ! -x /usr/bin/mysql{MYSQL_MAJOR} ]; then
354                 echo >&2 "Slave status not available: 'mysql{MYSQL_MAJOR}' program not installed."
355                 return
356         fi
357
358         # see if slave status can be reported
359         local err=0 slave_status=$(mysql{MYSQL_MAJOR} --defaults-file="$MYSQL_CONFIG" --socket="$MYSQL_SOCKET" -e 'show slave status\G')
360         if [ -z "$slave_status" ]; then
361                 # slave not setup
362                 return
363         fi
364
365         printf "Slave Status:\n"
366
367         set -f
368         eval $(echo "$slave_status" | awk -F': ' '/^ *[A-Za-z_]+:/{
369                 k = tolower($1);
370                 v = substr($0, length($1) + 3);
371                 gsub(/\\/, "\\\\\\", v);
372                 gsub(/"/, "\\\"", v);
373                 gsub(/`/, "\\`", v);
374                 gsub(/\$/, "\\$", v);
375                 gsub(/\$/, "\\$", v);
376                 printf("%s=\"%s\";\n", k, v);
377         }')
378         set +f
379
380         if [ "$slave_io_running" != "Yes" ]; then
381                 printf "\tSlave IO not running\n"
382                 err=1
383         fi
384         if [ "$slave_sql_running" != "Yes" ]; then
385                 printf "\tSlave SQL not running\n"
386                 err=1
387         fi
388
389         if [ "$err" = 1 -a "$last_errno" -gt 0 ]; then
390                 printf "\tERROR %s: %s\n" "$last_errno" "$last_error"
391         fi
392
393         if [ "$master_log_file" != "$relay_master_log_file" ]; then
394                 printf "\tERROR logfile mismatch (%s)\n" "$relay_master_log_file"
395                 err=1
396         fi
397
398         if [ -z "$read_master_log_pos" -o -z "$exec_master_log_pos" ]; then
399                 printf "\tERROR No info about master\n"
400                 err=1
401                 return
402         fi
403
404         diff=$(($read_master_log_pos - $exec_master_log_pos))
405         printf "\tread pos: %s (%s) (host: %s:%d)\n" "$read_master_log_pos" "$master_log_file" "$master_host" "$master_port"
406         printf "\texec pos: %s\n" "$exec_master_log_pos"
407         printf "\tdiff: %s\n" "$diff"
408 }
409
410 #
411 # check for running mysql instances; if any instance is running then
412 # create subsys lock file
413 #
414 mysqlsubsys() {
415         # check for every defined db cluster in sysconfig file
416         for mysqldir in $DB_CLUSTERS; do
417                 mysqlstatus "$mysqldir"
418                 if [ "$MYSQL_STATUS" = "running" ]; then
419                         touch /var/lock/subsys/mysql{MYSQL_MAJOR}
420                         return
421                 fi
422         done
423         rm -f /var/lock/subsys/mysql{MYSQL_MAJOR}
424 }
425
426 mysqlinit() {
427         local clusterdir="$1"
428
429         if [ -f "$clusterdir/mysqld.conf" ]; then
430                 mysqlgetconfig "$clusterdir"
431         else
432                 MYSQL_USER="root"
433                 MYSQL_CLUSTER_DIR="$clusterdir"
434                 MYSQL_DATA_DIR="$clusterdir/mysqldb/db"
435                 MYSQL_PIDFILE="$clusterdir/mysqldb/mysql.pid"
436                 MYSQL_SOCKET="$clusterdir/mysqldb/mysql.sock"
437
438                 # this $MYSQL_CONFIG will be created later
439                 MYSQL_CONFIG="$MYSQL_CLUSTER_DIR/mysqld.conf"
440         fi
441
442         show "Initializing cluster %s" "$clusterdir"; started
443
444         # Check if not exist init database
445         if [ -d "$MYSQL_DATA_DIR/mysql" ]; then
446                 nls "Seems that database is initialized now. Remove by hand %s" "$MYSQL_DATA_DIR/mysql"
447                 nls "before initializing database."
448                 nls "For now skipping cluster %s." "$clusterdir"
449                 exit 6
450         fi
451
452         show "Initializing MySQL{MYSQL_MAJOR} database for $MYSQL_DATA_DIR"
453         busy
454         TMP=/tmp TMPDIR=/tmp
455
456         mkdir -p "$MYSQL_DATA_DIR" > /dev/null 2>&1
457         # Using mysql:mysql for MYSQL_CLUSTER_DIR is creating SECURITY hole, root:root is proper
458         chown root:root "$MYSQL_CLUSTER_DIR"
459         chown mysql:mysql "$MYSQL_CLUSTER_DIR/mysqldb" "$MYSQL_DATA_DIR" > /dev/null 2>&1
460         chmod 751 "$MYSQL_CLUSTER_DIR" "$MYSQL_CLUSTER_DIR/mysqldb"
461
462         if [ -f $sharedir/mysqld.conf -a ! -f "$MYSQL_CLUSTER_DIR/mysqld.conf" ]; then
463                 sed -e "
464                         s#\(datadir.*\)=.*#\1= $MYSQL_DATA_DIR#g;
465                         s#\(pid-file.*\)=.*#\1= $MYSQL_PIDFILE#g;
466                         s#\(socket.*\)=.*#\1= $MYSQL_SOCKET#g;
467                         s#@clusterdir@#$MYSQL_CLUSTER_DIR#g;
468                 " $sharedir/mysqld.conf > "$MYSQL_CLUSTER_DIR/mysqld.conf"
469                 chown root:root "$MYSQL_CLUSTER_DIR/mysqld.conf"
470                 chmod 640 "$MYSQL_CLUSTER_DIR/mysqld.conf"
471         fi
472
473         ok=0
474         /usr/sbin/mysqld{MYSQL_MAJOR} \
475                 --defaults-file=$MYSQL_CLUSTER_DIR/mysqld.conf \
476                 --initialize \
477                 --skip-grant-tables \
478                 --datadir=$MYSQL_DATA_DIR \
479                 --user=$MYSQL_USER \
480                 --slave-load-tmpdir=$MYSQL_DATA_DIR \
481                 --tmpdir=$MYSQL_DATA_DIR \
482                 --log-error=$MYSQL_ERRLOG \
483                 && ok=1
484         [ -f $MYSQL_DATA_DIR/mysql/user.frm ] || ok=0
485
486         if [ "$ok" = 1 ]; then
487                 ok
488                 cat << END_OF_MSG
489
490 PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL{MYSQL_MAJOR} USERS!
491
492 Start database:
493 $ service mysql{MYSQL_MAJOR} start
494
495 and set passwords:
496
497 For 'root' user (ALL privileges, DB admin), paste command with new password:
498 ALTER USER 'root'@'localhost' IDENTIFIED BY 'newpassword';
499 FLUSH PRIVILEGES;
500
501 For 'mysql_sysadmin' (RELOAD and SHUTDOWN privileges):
502 CREATE USER 'mysql_sysadmin'@'localhost' IDENTIFIED BY 'sysnewpassword' PASSWORD EXPIRE NEVER;
503 GRANT RELOAD, SHUTDOWN ON *.* TO 'mysql_sysadmin'@'localhost';
504 FLUSH PRIVILEGES;
505
506
507 Both into command:
508 $ mysql{MYSQL_MAJOR} -u root -p --ssl-mode=disabled -S $MYSQL_SOCKET
509
510 NOTE 1:
511 CURRENT TEMPORARY ROOT PASSWORD CAN BE FOUND IN LOG
512 (grep for "A temporary password is generated" string):
513 $MYSQL_ERRLOG
514
515
516 NOTE 2:
517 mysql_sysadmin password should be placed to $MYSQL_CONFIG in
518 mysqladmin section. See the manual for more instructions.
519 (This user is used at logs rotation and server shutdown)
520
521 END_OF_MSG
522         else
523                 fail
524                 cat << END_OF_MSG
525 ERROR:
526 ERROR:
527 ERROR: Installation FAILED!
528 ERROR:
529 ERROR:
530
531 Examine the logs in $MYSQL_ERRLOG for more information. You can
532 also try to start the mysqld daemon with:
533
534 /usr/sbin/mysqld{MYSQL_MAJOR} --skip-grant &
535
536 You can use the command line tool mysql to connect to the mysql
537 database and look at the grant tables:
538
539 shell> mysql{MYSQL_MAJOR} -u mysql mysql
540 mysql> show tables
541
542 Try 'mysqld --help' if you have problems with paths. Setting on
543 logging in $MYSQL_DATA_DIR/mysqld.conf gives you a log in /var/log/mysql/query.log that
544 may be helpful. The latest information about MySQL is available on the
545 web at http://www.mysql.com/.
546
547 Please check PLD Linux ftp site for newer versions of this package.
548
549 Please consult the MySQL manual section: 'Problems running
550 mysql_install_db', and the manual section that describes problems on
551 your OS. Another information source is the MySQL email archive.
552
553 END_OF_MSG
554                 exit 1
555         fi
556
557         # if it's first server, register as default
558         if [ ! -e /var/lib/mysql{MYSQL_MAJOR}/mysql.sock ] || [ -L /var/lib/mysql{MYSQL_MAJOR}/mysql.sock ] && [ -z "$(readlink /var/lib/mysql/mysql.sock)" ]; then
559                 sock=${MYSQL_SOCKET#/var/lib/mysql/} # make it relative if possible
560                 ln -s "$sock" /var/lib/mysql{MYSQL_MAJOR}/mysql.sock
561         fi
562         # same for config, move to /etc
563         if [ ! -e /etc/mysql{MYSQL_MAJOR}/mysqld.conf ]; then
564                 mv "$MYSQL_CLUSTER_DIR/mysqld.conf" /etc/mysql{MYSQL_MAJOR}/mysqld.conf
565         fi
566 }
567
568 #
569 # End of useful functions.
570 #
571
572 start() {
573         local mysqldir
574         for mysqldir in $DB_CLUSTERS; do
575                 mysqlstatus "$mysqldir" start
576                 if [ "$MYSQL_STATUS" = "running" ]; then
577                         msg_already_running "MySQL $mysqldir"
578                 else
579                         mysqlstart "$mysqldir"
580                 fi
581         done
582         mysqlsubsys
583 }
584
585 stop() {
586         local mysqldir
587         for mysqldir in $DB_CLUSTERS; do
588                 mysqlstatus "$mysqldir" stop
589                 if [ "$MYSQL_STATUS" = "not running" ]; then
590                         msg_not_running "MySQL $mysqldir"
591                 else
592                         mysqlstop "$mysqldir"
593                 fi
594         done
595         mysqlsubsys
596 }
597
598 condrestart() {
599         if [ ! -f /var/lock/subsys/mysql{MYSQL_MAJOR} ]; then
600                 msg_not_running "MySQL{MYSQL_MAJOR}"
601                 RETVAL=$1
602                 return
603         fi
604
605         stop
606         start
607 }
608
609 status() {
610         local mysqldir addr port socket pid pids running datadir 
611         RETVAL=3
612         for mysqldir in $DB_CLUSTERS; do
613                 mysqlstatus "$mysqldir"
614                 if [ "$MYSQL_STATUS" = "running" ]; then
615                         RETVAL=0
616                         addr=${MYSQL_BIND_ADDRESS:-0.0.0.0}
617                         port=${MYSQL_PORT:-3306}
618                         socket=${MYSQL_SOCKET:-/var/lib/mysql{MYSQL_MAJOR}/mysql.sock}
619                         pid=$MYSQL_PID
620                         nls "MySQL cluster %s, pid %s\n" "$mysqldir" "$pid"
621                         [ -z "$MYSQL_SKIP_NETWORKING" ] && nls "\ttcp:%s:%s\n" "$addr" "$port"
622                         nls "\tunix: %s\n" "$socket"
623
624                         MYSQL_SOCKET=$socket slave_status
625
626                         pids="$pids/$MYSQL_PID/"
627                         progress "$MYSQL_STATUS"
628                 else
629                         show "MySQL cluster %s" "$mysqldir"
630                         progress "$MYSQL_STATUS" "$CFAIL"
631                 fi
632                 echo
633         done
634
635         for pid in $(/sbin/pidof mysqld{MYSQL_MAJOR}); do
636                 if [[ $pids != */$pid/* ]]; then
637                         running="$running $pid"
638                 fi
639         done
640
641         if [ $# = 1 -a "$running" ]; then
642                 nls "Warning: MySQL Daemon processes not under clusters.conf control:"
643                 # see if we can display their status
644                 for pid in $running; do
645                         datadir=$(cat /proc/$pid/cmdline | tr '\0' '\n' | fgrep -- --datadir=)
646                         datadir=${datadir#--datadir=} # strip --datadir
647                         mysqldir=${datadir%/mysqldb/db} # strip /mysqldb/db
648                         mysqlstatus "$mysqldir"
649                         if [ "$MYSQL_STATUS" = "running" ]; then
650                                 addr=${MYSQL_BIND_ADDRESS:-0.0.0.0}
651                                 port=${MYSQL_PORT:-3306}
652                                 socket=${MYSQL_SOCKET:-/var/lib/mysql{MYSQL_MAJOR}/mysql.sock}
653                                 nls "MySQL cluster %s, pid %s\n" "$mysqldir" "$pid"
654                                 [ -z "$MYSQL_SKIP_NETWORKING" ] && nls "\ttcp:%s:%s\n" "$addr" "$port"
655                                 nls "\tunix: %s\n" "$socket"
656
657                                 MYSQL_SOCKET=$socket slave_status
658
659                                 progress "$MYSQL_STATUS"
660                         else
661                                 show "MySQL cluster %s" "$mysqldir"
662                                 progress "$MYSQL_STATUS" "$CFAIL"
663                         fi
664                         echo
665                 done
666         fi
667 }
668
669 RETVAL=0
670 case "$action" in
671   start)
672         start
673         ;;
674   stop)
675         stop
676         ;;
677   restart)
678         stop
679         start
680         ;;
681   try-restart)
682         condrestart 0
683         ;;
684   force-reload)
685         condrestart 7
686         ;;
687   init)
688         for mysqldir in $DB_CLUSTERS; do
689                 mysqlinit "$mysqldir"
690         done
691         exit $?
692         ;;
693   flush-logs)
694         for mysqldir in $DB_CLUSTERS; do
695                 mysqlgetconfig "$mysqldir"
696                 # just if mysqld is really running
697                 if /usr/bin/mysqladmin{MYSQL_MAJOR} --defaults-file="$MYSQL_CONFIG" --socket="$MYSQL_SOCKET" ping >/dev/null 2>&1; then
698                         /usr/bin/mysqladmin{MYSQL_MAJOR} --defaults-file="$MYSQL_CONFIG" --socket="$MYSQL_SOCKET" flush-logs
699                 fi
700         done
701         ;;
702   status)
703         status
704         ;;
705   *)
706         msg_usage "$0 {start|stop|restart|try-restart|force-reload|init|flush-logs|status}"
707         exit 3
708 esac
709
710 exit $RETVAL
This page took 0.092331 seconds and 4 git commands to generate.