~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/drizzled_safe.in

  • Committer: Brian Aker
  • Date: 2008-07-08 21:36:11 UTC
  • mfrom: (77.1.34 codestyle)
  • Revision ID: brian@tangent.org-20080708213611-b0k2zy8eldttqct3
Merging up Monty's changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
3
3
# This file is public domain and comes with NO WARRANTY of any kind
4
4
#
5
 
# Script to start the MySQL daemon and restart it if it dies unexpectedly
 
5
# Script to start the Drizzle daemon and restart it if it dies unexpectedly
6
6
#
7
 
# This should be executed in the MySQL base directory if you are using a
 
7
# This should be executed in the Drizzle base directory if you are using a
8
8
# binary installation that is not installed in its compile-time default
9
9
# location
10
10
#
11
11
# mysql.server works by first doing a cd to the base directory and from there
12
 
# executing mysqld_safe
 
12
# executing drizzled_safe
13
13
 
14
 
KILL_MYSQLD=1;
15
 
MYSQLD=
 
14
KILL_DRIZZLED=1;
 
15
DRIZZLED=
16
16
niceness=0
17
17
# Initial logging status: error log is not open, and not using syslog
18
18
logging=init
19
19
want_syslog=0
20
20
syslog_tag=
21
 
user=@MYSQLD_USER@
 
21
user=@DRIZZLED_USER@
22
22
pid_file=
23
23
err_log=
24
24
 
25
 
syslog_tag_mysqld=mysqld
26
 
syslog_tag_mysqld_safe=mysqld_safe
 
25
syslog_tag_drizzled=drizzled
 
26
syslog_tag_drizzled_safe=drizzled_safe
27
27
 
28
28
trap '' 1 2 3 15                        # we shouldn't let anyone kill us
29
29
 
42
42
  --no-defaults              Don't read the system defaults file
43
43
  --defaults-file=FILE       Use the specified defaults file
44
44
  --defaults-extra-file=FILE Also use defaults from the specified file
45
 
  --ledir=DIRECTORY          Look for mysqld in the specified directory
 
45
  --ledir=DIRECTORY          Look for drizzled in the specified directory
46
46
  --open-files-limit=LIMIT   Limit the number of open files
47
47
  --core-file-size=LIMIT     Limit core files to the specified size
48
48
  --timezone=TZ              Set the system timezone
49
 
  --mysqld=FILE              Use the specified file as mysqld
50
 
  --mysqld-version=VERSION   Use "mysqld-VERSION" as mysqld
51
 
  --nice=NICE                Set the scheduling priority of mysqld
52
 
  --skip-kill-mysqld         Don't try to kill stray mysqld processes
 
49
  --drizzled=FILE              Use the specified file as drizzled
 
50
  --drizzled-version=VERSION   Use "drizzled-VERSION" as drizzled
 
51
  --nice=NICE                Set the scheduling priority of drizzled
 
52
  --skip-kill-drizzled         Don't try to kill stray drizzled processes
53
53
  --syslog                   Log messages to syslog with 'logger'
54
54
  --skip-syslog              Log messages to error log (default)
55
 
  --syslog-tag=TAG           Pass -t "mysqld-TAG" to 'logger'
 
55
  --syslog-tag=TAG           Pass -t "drizzled-TAG" to 'logger'
56
56
 
57
 
All other options are passed to the mysqld program.
 
57
All other options are passed to the drizzled program.
58
58
 
59
59
EOF
60
60
        exit 1
89
89
  priority="$1"
90
90
  shift
91
91
 
92
 
  msg="`date +'%y%m%d %H:%M:%S'` mysqld_safe $*"
 
92
  msg="`date +'%y%m%d %H:%M:%S'` drizzled_safe $*"
93
93
  echo "$msg"
94
94
  case $logging in
95
95
    init) ;;  # Just echo the message, don't save it anywhere
96
96
    file) echo "$msg" >> "$err_log" ;;
97
 
    syslog) logger -t "$syslog_tag_mysqld_safe" -p "$priority" "$*" ;;
 
97
    syslog) logger -t "$syslog_tag_drizzled_safe" -p "$priority" "$*" ;;
98
98
    *)
99
99
      echo "Internal program error (non-fatal):" \
100
100
           " unknown logging method '$logging'" >&2
115
115
  case $logging in
116
116
    file) cmd="$cmd >> "`shell_quote_string "$err_log"`" 2>&1" ;;
117
117
    syslog)
118
 
      # mysqld often prefixes its messages with a timestamp, which is
 
118
      # drizzled often prefixes its messages with a timestamp, which is
119
119
      # redundant when logging to syslog (which adds its own timestamp)
120
120
      # However, we don't strip the timestamp with sed here, because
121
121
      # sed buffers output (only GNU sed supports a -u (unbuffered) option)
122
122
      # which means that messages may not get sent to syslog until the
123
 
      # mysqld process quits.
124
 
      cmd="$cmd 2>&1 | logger -t '$syslog_tag_mysqld' -p daemon.error"
 
123
      # drizzled process quits.
 
124
      cmd="$cmd 2>&1 | logger -t '$syslog_tag_drizzled' -p daemon.error"
125
125
      ;;
126
126
    *)
127
127
      echo "Internal program error (non-fatal):" \
129
129
      ;;
130
130
  esac
131
131
 
132
 
  #echo "Running mysqld: [$cmd]"
 
132
  #echo "Running drizzled: [$cmd]"
133
133
  eval "$cmd"
134
134
}
135
135
 
153
153
  for arg do
154
154
    val=`echo "$arg" | sed -e "s;--[^=]*=;;"`
155
155
    case "$arg" in
156
 
      # these get passed explicitly to mysqld
 
156
      # these get passed explicitly to drizzled
157
157
      --basedir=*) MY_BASEDIR_VERSION="$val" ;;
158
158
      --datadir=*) DATADIR="$val" ;;
159
159
      --pid-file=*) pid_file="$val" ;;
160
160
      --user=*) user="$val"; SET_USER=1 ;;
161
161
 
162
 
      # these might have been set in a [mysqld_safe] section of my.cnf
163
 
      # they are added to mysqld command line to override settings from my.cnf
 
162
      # these might have been set in a [drizzled_safe] section of my.cnf
 
163
      # they are added to drizzled command line to override settings from my.cnf
164
164
      --log-error=*) err_log="$val" ;;
165
165
      --port=*) mysql_tcp_port="$val" ;;
166
166
      --socket=*) mysql_unix_port="$val" ;;
167
167
 
168
 
      # mysqld_safe-specific options - must be set in my.cnf ([mysqld_safe])!
 
168
      # drizzled_safe-specific options - must be set in my.cnf ([drizzled_safe])!
169
169
      --core-file-size=*) core_file_size="$val" ;;
170
170
      --ledir=*) ledir="$val" ;;
171
 
      --mysqld=*) MYSQLD="$val" ;;
172
 
      --mysqld-version=*)
 
171
      --drizzled=*) DRIZZLED="$val" ;;
 
172
      --drizzled-version=*)
173
173
        if test -n "$val"
174
174
        then
175
 
          MYSQLD="mysqld-$val"
 
175
          DRIZZLED="drizzled-$val"
176
176
        else
177
 
          MYSQLD="mysqld"
 
177
          DRIZZLED="drizzled"
178
178
        fi
179
179
        ;;
180
180
      --nice=*) niceness="$val" ;;
181
181
      --open-files-limit=*) open_files="$val" ;;
182
 
      --skip-kill-mysqld*) KILL_MYSQLD=0 ;;
 
182
      --skip-kill-drizzled*) KILL_DRIZZLED=0 ;;
183
183
      --syslog) want_syslog=1 ;;
184
184
      --skip-syslog) want_syslog=0 ;;
185
185
      --syslog-tag=*) syslog_tag="$val" ;;
199
199
 
200
200
 
201
201
#
202
 
# First, try to find BASEDIR and ledir (where mysqld is)
 
202
# First, try to find BASEDIR and ledir (where drizzled is)
203
203
#
204
204
 
205
205
if echo '@pkgdatadir@' | grep '^@prefix@' > /dev/null
212
212
 
213
213
MY_PWD=`pwd`
214
214
# Check for the directories we would expect from a binary release install
215
 
if test -f "$relpkgdata"/english/errmsg.sys -a -x ./bin/mysqld
 
215
if test -f "$relpkgdata"/english/errmsg.sys -a -x ./bin/drizzled
216
216
then
217
217
  MY_BASEDIR_VERSION=$MY_PWD            # Where bin, share and data are
218
 
  ledir=$MY_BASEDIR_VERSION/bin         # Where mysqld is
 
218
  ledir=$MY_BASEDIR_VERSION/bin         # Where drizzled is
219
219
# Check for the directories we would expect from a source install
220
 
elif test -f "$relpkgdata"/english/errmsg.sys -a -x ./libexec/mysqld
 
220
elif test -f "$relpkgdata"/english/errmsg.sys -a -x ./libexec/drizzled
221
221
then
222
222
  MY_BASEDIR_VERSION=$MY_PWD            # Where libexec, share and var are
223
 
  ledir=$MY_BASEDIR_VERSION/libexec     # Where mysqld is
 
223
  ledir=$MY_BASEDIR_VERSION/libexec     # Where drizzled is
224
224
# Since we didn't find anything, used the compiled-in defaults
225
225
else
226
226
  MY_BASEDIR_VERSION=@prefix@
272
272
export MYSQL_HOME
273
273
 
274
274
 
275
 
# Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe]
 
275
# Get first arguments from the my.cnf file, groups [drizzled] and [drizzled_safe]
276
276
# and then merge with the command line arguments
277
277
if test -x ./bin/my_print_defaults
278
278
then
294
294
args=
295
295
 
296
296
SET_USER=2
297
 
parse_arguments `$print_defaults $defaults --loose-verbose mysqld server`
 
297
parse_arguments `$print_defaults $defaults --loose-verbose drizzled server`
298
298
if test $SET_USER -eq 2
299
299
then
300
300
  SET_USER=0
301
301
fi
302
302
 
303
 
parse_arguments `$print_defaults $defaults --loose-verbose mysqld_safe safe_mysqld`
 
303
parse_arguments `$print_defaults $defaults --loose-verbose drizzled_safe safe_drizzled`
304
304
parse_arguments PICK-ARGS-FROM-ARGV "$@"
305
305
 
306
306
# Determine what logging facility to use
311
311
  my_which logger > /dev/null 2>&1
312
312
  if [ $? -ne 0 ]
313
313
  then
314
 
    log_error "--syslog requested, but no 'logger' program found.  Please ensure that 'logger' is in your PATH, or do not specify the --syslog option to mysqld_safe."
 
314
    log_error "--syslog requested, but no 'logger' program found.  Please ensure that 'logger' is in your PATH, or do not specify the --syslog option to drizzled_safe."
315
315
    exit 1
316
316
  fi
317
317
fi
320
320
then
321
321
  if [ -n "$err_log" ]
322
322
  then
323
 
    # mysqld adds ".err" if there is no extension on the --log-error
324
 
    # argument; must match that here, or mysqld_safe will write to a
325
 
    # different log file than mysqld
 
323
    # drizzled adds ".err" if there is no extension on the --log-error
 
324
    # argument; must match that here, or drizzled_safe will write to a
 
325
    # different log file than drizzled
326
326
 
327
 
    # mysqld does not add ".err" to "--log-error=foo."; it considers a
 
327
    # drizzled does not add ".err" to "--log-error=foo."; it considers a
328
328
    # trailing "." as an extension
329
329
    if expr "$err_log" : '.*\.[^/]*$' > /dev/null
330
330
    then
357
357
  then
358
358
    # Sanitize the syslog tag
359
359
    syslog_tag=`echo "$syslog_tag" | sed -e 's/[^a-zA-Z0-9_-]/_/g'`
360
 
    syslog_tag_mysqld_safe="${syslog_tag_mysqld_safe}-$syslog_tag"
361
 
    syslog_tag_mysqld="${syslog_tag_mysqld}-$syslog_tag"
 
360
    syslog_tag_drizzled_safe="${syslog_tag_drizzled_safe}-$syslog_tag"
 
361
    syslog_tag_drizzled="${syslog_tag_drizzled}-$syslog_tag"
362
362
  fi
363
363
  log_notice "Logging to syslog."
364
364
  logging=syslog
393
393
  chmod 755 $mysql_unix_port_dir
394
394
fi
395
395
 
396
 
# If the user doesn't specify a binary, we assume name "mysqld"
397
 
if test -z "$MYSQLD"
 
396
# If the user doesn't specify a binary, we assume name "drizzled"
 
397
if test -z "$DRIZZLED"
398
398
then
399
 
  MYSQLD=mysqld
 
399
  DRIZZLED=drizzled
400
400
fi
401
401
 
402
 
if test ! -x $ledir/$MYSQLD
 
402
if test ! -x $ledir/$DRIZZLED
403
403
then
404
 
  log_error "The file $ledir/$MYSQLD
 
404
  log_error "The file $ledir/$DRIZZLED
405
405
does not exist or is not executable. Please cd to the mysql installation
406
406
directory and restart this script from there as follows:
407
 
./bin/mysqld_safe&
408
 
See http://dev.mysql.com/doc/mysql/en/mysqld-safe.html for more information"
 
407
./bin/drizzled_safe&
 
408
See http://dev.mysql.com/doc/mysql/en/drizzled-safe.html for more information"
409
409
  exit 1
410
410
fi
411
411
 
497
497
  if @CHECK_PID@
498
498
  then
499
499
    if @FIND_PROC@
500
 
    then    # The pid contains a mysqld process
501
 
      log_error "A mysqld process already exists"
 
500
    then    # The pid contains a drizzled process
 
501
      log_error "A drizzled process already exists"
502
502
      exit 1
503
503
    fi
504
504
  fi
508
508
    log_error "Fatal error: Can't remove the pid file:
509
509
$pid_file
510
510
Please remove it manually and start $0 again;
511
 
mysqld daemon not started"
 
511
drizzled daemon not started"
512
512
    exit 1
513
513
  fi
514
514
fi
518
518
# checked and repaired during startup. You should add sensible key_buffer
519
519
# and sort_buffer values to my.cnf to improve check performance or require
520
520
# less disk space.
521
 
# Alternatively, you can start mysqld with the "myisam-recover" option. See
 
521
# Alternatively, you can start drizzled with the "myisam-recover" option. See
522
522
# the manual for details.
523
523
#
524
524
# echo "Checking tables in $DATADIR"
533
533
 
534
534
cmd="$NOHUP_NICENESS"
535
535
 
536
 
for i in  "$ledir/$MYSQLD" "$defaults" "--basedir=$MY_BASEDIR_VERSION" \
 
536
for i in  "$ledir/$DRIZZLED" "$defaults" "--basedir=$MY_BASEDIR_VERSION" \
537
537
  "--datadir=$DATADIR" "$USER_OPTION"
538
538
do
539
539
  cmd="$cmd "`shell_quote_string "$i"`
542
542
# Avoid 'nohup: ignoring input' warning
543
543
test -n "$NOHUP_NICENESS" && cmd="$cmd < /dev/null"
544
544
 
545
 
log_notice "Starting $MYSQLD daemon with databases from $DATADIR"
 
545
log_notice "Starting $DRIZZLED daemon with databases from $DATADIR"
546
546
while true
547
547
do
548
548
  rm -f $safe_mysql_unix_port $pid_file # Some extra safety
554
554
    break
555
555
  fi
556
556
 
557
 
  if @TARGET_LINUX@ && test $KILL_MYSQLD -eq 1
 
557
  if @TARGET_LINUX@ && test $KILL_DRIZZLED -eq 1
558
558
  then
559
559
    # Test if one process was hanging.
560
 
    # This is only a fix for Linux (running as base 3 mysqld processes)
 
560
    # This is only a fix for Linux (running as base 3 drizzled processes)
561
561
    # but should work for the rest of the servers.
562
562
    # The only thing is ps x => redhat 5 gives warnings when using ps -x.
563
563
    # kill -9 is used or the process won't react on the kill.
564
 
    numofproces=`ps xaww | grep -v "grep" | grep "$ledir/$MYSQLD\>" | grep -c "pid-file=$pid_file"`
 
564
    numofproces=`ps xaww | grep -v "grep" | grep "$ledir/$DRIZZLED\>" | grep -c "pid-file=$pid_file"`
565
565
 
566
566
    log_notice "Number of processes running now: $numofproces"
567
567
    I=1
568
568
    while test "$I" -le "$numofproces"
569
569
    do 
570
 
      PROC=`ps xaww | grep "$ledir/$MYSQLD\>" | grep -v "grep" | grep "pid-file=$pid_file" | sed -n '$p'` 
 
570
      PROC=`ps xaww | grep "$ledir/$DRIZZLED\>" | grep -v "grep" | grep "pid-file=$pid_file" | sed -n '$p'` 
571
571
 
572
572
      for T in $PROC
573
573
      do
576
576
      #    echo "TEST $I - $T **"
577
577
      if kill -9 $T
578
578
      then
579
 
        log_error "$MYSQLD process hanging, pid $T - killed"
 
579
        log_error "$DRIZZLED process hanging, pid $T - killed"
580
580
      else
581
581
        break
582
582
      fi
583
583
      I=`expr $I + 1`
584
584
    done
585
585
  fi
586
 
  log_notice "mysqld restarted"
 
586
  log_notice "drizzled restarted"
587
587
done
588
588
 
589
 
log_notice "mysqld from pid file $pid_file ended"
 
589
log_notice "drizzled from pid file $pid_file ended"
590
590