The /var/log/syslog contains the following possibly useful
information.  I will include the full transcript attached but the
following appears to be the problem indication.

  Dec 18 11:24:59 leibniz mysqld_safe[6958]: ERROR: 1064  You have an error in 
your SQL syntax; check the manual that corresponds to your MySQL server version 
for the right syntax to use near 'ALTER TABLE user ADD column Show_view_priv 
enum('N','Y') CHARACTER SET utf8 NOT ' at line 1

That appears to be an error in the mysql-server-5.5.postinst script
near the "fix_privs" section.  Here is from the current copy of the
script.

  ...
    fix_privs=`echo -e \
        "USE mysql;\n" \
        "ALTER TABLE user ADD column Create_view_priv enum('N','Y') CHARACTER 
SET utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Show_view_priv enum('N','Y') CHARACTER SET 
utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Create_routine_priv enum('N','Y') 
CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Alter_routine_priv enum('N','Y') CHARACTER 
SET utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Create_user_priv enum('N','Y') CHARACTER 
SET utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Event_priv enum('N','Y') CHARACTER SET 
utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Trigger_priv enum('N','Y') CHARACTER SET 
utf8 NOT NULL DEFAULT 'N'; " \
        "ALTER TABLE user ADD column Create_tablespace_priv enum('N','Y') 
CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " `
  ...
    echo "$fix_privs"                                        | $MYSQL_BOOTSTRAP 
2>&1 | $ERR_LOGGER

Does mysql support command pipelining like that as a batch?  I thought
it needed to have them run individually one at a time.

Since this was a production machine I needed to get it back online
asap.  Therefore I recovered using the following actions.  Perhaps
this would help any one else who also has hit this problem.

  mysqldump --defaults-file=/etc/mysql/debian.cnf --all-databases --events | 
gzip > mysql.db.dump.gz
  apt-get purge mysql-server-5.5
  mv /var/lib/msyql /var/lib/msyql.bug.bak
  apt-get install mysql-server
  ...select the same root password as previously...
  zcat mysql.db.dump.gz | mysql -uroot -p
  ...root password as just selected...
  mysql -uroot -p
  ...root password as just selected...
  mysql> FLUSH PRIVILEGES;
  mysql> exit;

As a fresh installation mysql installs okay.  The FLUSH PRIVILEGES is
appeared to have been needed to activate the new users that were
freshly imported.  At that point all was working again and okay.

Bob
Dec 18 11:24:53 leibniz mysqld_safe[6888]: 131218 11:24:53 [Warning] Using 
unique option prefix key_buffer instead of key_buffer_size is deprecated and 
will be removed in a future release. Please use the full name instead.
Dec 18 11:24:54 leibniz mysqld_safe[6888]: 131218 11:24:54 [Warning] Using 
unique option prefix key_buffer instead of key_buffer_size is deprecated and 
will be removed in a future release. Please use the full name instead.
Dec 18 11:24:55 leibniz mysqld_safe[6888]: /usr/bin/mysqladmin -u root -h 
leibniz password 'new-password'
Dec 18 11:24:55 leibniz mysqld_safe[6888]: Alternatively you can run:
Dec 18 11:24:55 leibniz mysqld_safe[6888]: /usr/bin/mysql_secure_installation
Dec 18 11:24:55 leibniz mysqld_safe[6888]: which will also give you the option 
of removing the test
Dec 18 11:24:55 leibniz mysqld_safe[6888]: databases and anonymous user created 
by default.  This is
Dec 18 11:24:55 leibniz mysqld_safe[6888]: strongly recommended for production 
servers.
Dec 18 11:24:55 leibniz mysqld_safe[6888]: Please report any problems with the 
/usr/scripts/mysqlbug script!
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 [Warning] Using 
unique option prefix key_buffer instead of key_buffer_size is deprecated and 
will be removed in a future release. Please use the full name instead.
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 [Warning] Using 
unique option prefix myisam-recover instead of myisam-recover-options is 
deprecated and will be removed in a future release. Please use the full name 
instead.
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 [Note] Plugin 
'FEDERATED' is disabled.
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: The InnoDB 
memory heap is disabled
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: Mutexes and 
rw_locks use GCC atomic builtins
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: Compressed 
tables use zlib 1.2.7
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: Using Linux 
native AIO
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: Initializing 
buffer pool, size = 128.0M
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: Completed 
initialization of buffer pool
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55 InnoDB: highest 
supported file format is Barracuda.
Dec 18 11:24:55 leibniz mysqld_safe[6933]: 131218 11:24:55  InnoDB: Waiting for 
the background threads to start
Dec 18 11:24:56 leibniz mysqld_safe[6933]: 131218 11:24:56 InnoDB: 5.5.33 
started; log sequence number 18907107
Dec 18 11:24:56 leibniz mysqld_safe[6933]: 131218 11:24:56  InnoDB: Starting 
shutdown...
Dec 18 11:24:57 leibniz mysqld_safe[6933]: 131218 11:24:57  InnoDB: Shutdown 
completed; log sequence number 18907107
Dec 18 11:24:57 leibniz mysqld_safe[6958]: 131218 11:24:57 [Warning] Using 
unique option prefix key_buffer instead of key_buffer_size is deprecated and 
will be removed in a future release. Please use the full name instead.
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 [Warning] Using 
unique option prefix myisam-recover instead of myisam-recover-options is 
deprecated and will be removed in a future release. Please use the full name 
instead.
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 [Note] Plugin 
'FEDERATED' is disabled.
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: The InnoDB 
memory heap is disabled
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: Mutexes and 
rw_locks use GCC atomic builtins
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: Compressed 
tables use zlib 1.2.7
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: Using Linux 
native AIO
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: Initializing 
buffer pool, size = 128.0M
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: Completed 
initialization of buffer pool
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58 InnoDB: highest 
supported file format is Barracuda.
Dec 18 11:24:58 leibniz mysqld_safe[6958]: 131218 11:24:58  InnoDB: Waiting for 
the background threads to start
Dec 18 11:24:59 leibniz mysqld_safe[6958]: 131218 11:24:59 InnoDB: 5.5.33 
started; log sequence number 18907107
Dec 18 11:24:59 leibniz mysqld_safe[6958]: ERROR: 1064  You have an error in 
your SQL syntax; check the manual that corresponds to your MySQL server version 
for the right syntax to use near 'ALTER TABLE user ADD column Show_view_priv 
enum('N','Y') CHARACTER SET utf8 NOT ' at line 1
Dec 18 11:24:59 leibniz mysqld_safe[6958]: 131218 11:24:59 [ERROR] Aborting
Dec 18 11:24:59 leibniz mysqld_safe[6958]: 131218 11:24:59  InnoDB: Starting 
shutdown...
Dec 18 11:25:00 leibniz mysqld_safe[6958]: 131218 11:25:00  InnoDB: Shutdown 
completed; log sequence number 18907107
Dec 18 11:25:00 leibniz mysqld_safe[6958]: 131218 11:25:00 [Note] 
/usr/sbin/mysqld: Shutdown complete
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 [Warning] Using 
unique option prefix key_buffer instead of key_buffer_size is deprecated and 
will be removed in a future release. Please use the full name instead.
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 [Warning] Using 
unique option prefix myisam-recover instead of myisam-recover-options is 
deprecated and will be removed in a future release. Please use the full name 
instead.
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 [Note] Plugin 
'FEDERATED' is disabled.
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: The InnoDB 
memory heap is disabled
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: Mutexes and 
rw_locks use GCC atomic builtins
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: Compressed 
tables use zlib 1.2.7
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: Using Linux 
native AIO
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: Initializing 
buffer pool, size = 128.0M
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: Completed 
initialization of buffer pool
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00 InnoDB: highest 
supported file format is Barracuda.
Dec 18 11:25:00 leibniz mysqld_safe[6979]: 131218 11:25:00  InnoDB: Waiting for 
the background threads to start
Dec 18 11:25:01 leibniz mysqld_safe[6979]: 131218 11:25:01 InnoDB: 5.5.33 
started; log sequence number 18907107
Dec 18 11:25:01 leibniz mysqld_safe[6979]: 131218 11:25:01  InnoDB: Starting 
shutdown...
Dec 18 11:25:02 leibniz mysqld_safe[6979]: 131218 11:25:02  InnoDB: Shutdown 
completed; log sequence number 18907107
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 [Warning] Using 
unique option prefix key_buffer instead of key_buffer_size is deprecated and 
will be removed in a future release. Please use the full name instead.
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 [Warning] Using 
unique option prefix myisam-recover instead of myisam-recover-options is 
deprecated and will be removed in a future release. Please use the full name 
instead.
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 [Note] Plugin 
'FEDERATED' is disabled.
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: The InnoDB 
memory heap is disabled
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: Mutexes and 
rw_locks use GCC atomic builtins
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: Compressed 
tables use zlib 1.2.7
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: Using Linux 
native AIO
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: Initializing 
buffer pool, size = 128.0M
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: Completed 
initialization of buffer pool
Dec 18 11:25:02 leibniz mysqld_safe[7014]: 131218 11:25:02 InnoDB: highest 
supported file format is Barracuda.
Dec 18 11:25:03 leibniz mysqld_safe[7014]: 131218 11:25:03  InnoDB: Waiting for 
the background threads to start
Dec 18 11:25:04 leibniz mysqld_safe[7014]: 131218 11:25:04 InnoDB: 5.5.33 
started; log sequence number 18907107
Dec 18 11:25:04 leibniz mysqld_safe[7014]: ERROR: 1050  Table 'plugin' already 
exists
Dec 18 11:25:04 leibniz mysqld_safe[7014]: 131218 11:25:04 [ERROR] Aborting
Dec 18 11:25:04 leibniz mysqld_safe[7014]: 131218 11:25:04  InnoDB: Starting 
shutdown...
Dec 18 11:25:04 leibniz mysqld_safe[7014]: 131218 11:25:04  InnoDB: Shutdown 
completed; log sequence number 18907107
Dec 18 11:25:04 leibniz mysqld_safe[7014]: 131218 11:25:04 [Note] 
/usr/sbin/mysqld: Shutdown complete
Dec 18 11:25:06 leibniz mysqld_safe: Starting mysqld daemon with databases from 
/var/lib/mysql
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 [Warning] Using unique option 
prefix key_buffer instead of key_buffer_size is deprecated and will be removed 
in a future release. Please use the full name instead.
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 [Warning] Using unique option 
prefix myisam-recover instead of myisam-recover-options is deprecated and will 
be removed in a future release. Please use the full name instead.
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 [Note] Plugin 'FEDERATED' is 
disabled.
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: The InnoDB memory heap 
is disabled
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: Mutexes and rw_locks 
use GCC atomic builtins
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: Compressed tables use 
zlib 1.2.7
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: Using Linux native AIO
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: Initializing buffer 
pool, size = 128.0M
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: Completed 
initialization of buffer pool
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06 InnoDB: highest supported file 
format is Barracuda.
Dec 18 11:25:06 leibniz mysqld: 131218 11:25:06  InnoDB: Waiting for the 
background threads to start
Dec 18 11:25:07 leibniz mysqld: 131218 11:25:07 InnoDB: 5.5.33 started; log 
sequence number 18907107
Dec 18 11:25:07 leibniz mysqld: 131218 11:25:07 [Note] Server hostname 
(bind-address): '127.0.0.1'; port: 3306
Dec 18 11:25:07 leibniz mysqld: 131218 11:25:07 [Note]   - '127.0.0.1' resolves 
to '127.0.0.1';
Dec 18 11:25:07 leibniz mysqld: 131218 11:25:07 [Note] Server socket created on 
IP: '127.0.0.1'.
Dec 18 11:25:07 leibniz mysqld: 131218 11:25:07 [Note] Event Scheduler: Loaded 
0 events
Dec 18 11:25:07 leibniz mysqld: 131218 11:25:07 [Note] /usr/sbin/mysqld: ready 
for connections.
Dec 18 11:25:07 leibniz mysqld: Version: '5.5.33-0+wheezy1'  socket: 
'/var/run/mysqld/mysqld.sock'  port: 3306  (Debian)
Dec 18 11:25:08 leibniz /etc/mysql/debian-start[7500]: /usr/bin/mysql_upgrade: 
the '--basedir' option is always ignored
Dec 18 11:25:08 leibniz /etc/mysql/debian-start[7500]: Looking for 'mysql' as: 
/usr/bin/mysql
Dec 18 11:25:08 leibniz /etc/mysql/debian-start[7500]: Looking for 'mysqlcheck' 
as: /usr/bin/mysqlcheck
Dec 18 11:25:08 leibniz /etc/mysql/debian-start[7500]: This installation of 
MySQL is already upgraded to 5.5.33, use --force if you still need to run 
mysql_upgrade
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: Status information:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: Current dir: /var/lib/mysql/
Dec 18 11:25:09 leibniz mysqld: Running threads: 0  Stack size: 196608
Dec 18 11:25:09 leibniz mysqld: Current locks:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bd05430:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bd02ed0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bd005a0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcfe0b0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcfc010:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcfae60:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcf35b0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcf0dd0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcedd00:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bceb330:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bce8d00:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bce6110:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bce4700:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcdc8d0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcd9ec0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcc1cc0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcc1ba0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcc0d40:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcbd200:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcb4fd0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcb4300:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcb07f0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bcac870:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bca2110:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bca1ff0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc9e2b0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc974f0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc93830:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc82860:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc82700:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc82030:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc74970:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc717e0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc637a0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc5f240:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc58330:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc54290:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc4bc60:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc4b640:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc46090:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc39a20:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc369a0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc362c0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc2ab20:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc2a450:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc18080:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc16920:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc17f70:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc0d870:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc0a050:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc042c0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bc007f0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbf9f80:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbf6560:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbebe40:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbeb5c0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbe6f20:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbe2f10:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbd39a0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbd0640:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbd04e0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbd2fb0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbcfe50:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbade90:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbc2780:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbc15e0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbbd6d0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbb9d00:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbb60c0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bbad810:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bba8340:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bba3ee0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb9f270:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb9b5d0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb8c6a0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb8c580:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb83fb0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb80490:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb6b050:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb657d0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb5b8e0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb58200:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb545e0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb656b0:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb6b360:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb75f20:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb45c60:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz mysqld: lock: 0x7f473bb3d030:
Dec 18 11:25:09 leibniz mysqld:
Dec 18 11:25:09 leibniz rsyslogd-2177: imuxsock begins to drop messages from 
pid 7425 due to rate-limiting
Dec 18 11:25:51 leibniz rsyslogd-2177: imuxsock lost 58 messages from pid 7425 
due to rate-limiting

Reply via email to