A typical Developer Blog
by Gordon Franke
Icon

Wie kann ich alle Zimbra datenbanken und tabellen überprüfen und optimieren?

1
2
3
4
5
6
7
8
9
10
#!/bin/bash
#
 
source ~zimbra/bin/zmshutil || exit 1
zmsetvars zimbra_home mysql_directory mysql_socket mysql_root_password
 
echo ${mysql_root_password}
 
${mysql_directory}/bin/mysqlcheck --all-databases --optimize -h localhost -P 7306 --protocol=tcp \
        --user=root --password=${mysql_root_password} $*

Related posts:

  1. Wie kann ich alle von symfony generierten base Dateien vom svn löschen? Dieses im Projekt root Verzeichnis aufrufen. for DIR in `find...
  2. Bash Skript zum Erstellen eines Symfony Projekts mit sfDoctrinePlugin, sfDoctrineGuardPlugin und sfDoctrineGuardExtraPlugin 1 2 3 4 5 6 7 8 9...
  3. Wie kann ich mehrere Instanzen von memcached auf einem Server laufen lassen? Problem Ich brauche mehr als einen Memcached Server. Lösung Virtuellemaschinen...
  4. Wie kann ich die Anzahl der Datenbank Queries in meinem Unit Test überprüfen? 1 2 3 $manager = new sfDatabaseManager($configuration); $connection =...

Related posts brought to you by Yet Another Related Posts Plugin.

Author: Gordon Franke

Category: Uncategorized, unix

Tagged: ,

Leave a Reply

CommentLuv Enabled