MySQL

Test Tag Extra3

Extra Info zu Mysql: ist ein DB System

Wir haben einen Auftrag fertiggestellt. Ein Website mit über 50k Einträge und 20k Benutzeraccounts. Täglich gibt es mehr als 100k Pageviews. Das Problem ist die Leistung bzw. die Geschwindigkeit. Manchmal hat es bis zu 25 Sekunden gedauert. Wir haben alle InnoDB Tabellen manuell auf MyISAM umgesetzt. Jetzt ist es viel schneller.

Aber wir sind nicht sicher ob MyISAM später Nebenwirkungen (Foreign-Keys usw) zeigen wird. Hat jemand damit Erfahrung?

 

Mysql-Backup-Alle-DBs-auf-USB.cmd

 

@echo off

c:\xampp\mysql\bin\mysql.exe -u root -s -N -e "SHOW DATABASES" |   for /F "usebackq" %%D in (`findstr /V "information_schema performance_schema"`) do c:\xampp\mysql\bin\mysqldump.exe %%D -u root > f:\backups\%%D.sql

 

 

Mysql-Backup-Alle-DBs-auf-USB.vbs

Set WshShell = CreateObject("WScript.Shell")

WshShell.Run chr(34) & "C:\Mysql-Backup-Alle-DBs-auf-USB.cmd" & Chr(34), 0

Set WshShell = Nothing

Wenn man eine Query 10 mal wiederholen möchte, kann man so was verwenden:

Query 1:

 DELIMITER $$

 DROP PROCEDURE IF EXISTS mysql_loop_repeat_myprocedure1$$

 CREATE PROCEDURE mysql_loop_repeat_myprocedure1()

 BEGIN

 DECLARE x INT;

        

 SET x = 1;

        

 REPEAT

 INSERT INTO `users` ( `username` ) VALUES ( concat('BenutzerName', '-', (FLOOR(RAND() * 401) + 800)) );

Mysql Server startet nicht, bekomme diese Fehlermeldung:

/etc/init.d/mysql restart [....] Restarting mysql (via systemctl): mysql.serviceJob for mysql.service failed. See 'systemctl status mysql.service' and 'journalctl -xn' for details.

 

Was soll ich tun?

Suche

Neueste Kommentare

  • 3 weeks 5 days ago
    How to Renew Let’s Encrypt SSL Certificate on Plesk via Ubuntu Shell

    Let’s Encrypt will only accept a wildcard via DNS challenge. 

    If your Plesk instance can’t create the _acme-challenge.example.com TXT (external DNS), the extension can’t complete validation and will show no success. 

  • 1 month ago
    Warning: Undefined array key "url" in Drupal\Core\Asset\CssCollectionOptimizerLazy->optimizeGroup()
    Warning: Undefined array key "url" in Drupal\Core\Asset\JsCollectionOptimizerLazy->optimizeGroup() 
  • 1 month ago
    Server install & config : Debian 12 + Plesk + Apache + nginx + MariaDB + Solr
    sudo timedatectl set-timezone Europe/Berlin
  • 1 month 1 week ago
    Warning: PHP Startup: Unable to load dynamic library 'apcu.so' ... cannot open shared object file: No such file or directory

    Try this:

  • 1 month 3 weeks ago
    List Cronjobs for all users (via for + crontab)

    Alternative (without warnings like "no crontab for dovecot") to see all tasks:

  • 1 month 3 weeks ago
    Install APCu (PHP 8.1, Plesk)

    php 8.3 apcu failed

    über Plesk hat es geklappt.

     

  • 1 month 3 weeks ago
    Install APCu (PHP 8.1, Plesk)

     

    install:

    # sudo apt install php-dev
    
  • 1 month 3 weeks ago
    pecl install apcu : phpize: not found / ERROR: `phpize' failed

    phpize

    # sudo apt install php-dev
    

     

    details

  • 1 month 3 weeks ago
    Install APCu (PHP 8.1, Plesk)

    Problem:

  • 3 months 1 week ago
    Install APCu (PHP 8.1, Plesk)

    Problem: