"forbidden" bei meiner Seite und phpmyadmin

Sarius87

Banned
Registriert
Mai 2016
Beiträge
888
Hilfe , habe ein mysqldump script getestet und seitdem geht meine Seite nicht mehr und phpmyadmin ist auch nicht mehr erreichbar... da steht nur error 403 forbidden und einloggen kann ich mich mit dem website ftp user auch nicht mehr . starte ich mysql mit
Code:
service mysql start

kommt das im log :

Code:
160907 20:10:34 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
160907 20:10:34 [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.
160907 20:10:34 [Note] /usr/sbin/mysqld (mysqld 5.5.50-0+deb8u1) starting as process 27449 ...
160907 20:10:34 [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.
160907 20:10:34 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Table 'plugin' is read only
160907 20:10:34 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
160907 20:10:34 InnoDB: The InnoDB memory heap is disabled
160907 20:10:34 InnoDB: Mutexes and rw_locks use GCC atomic builtins
160907 20:10:34 InnoDB: Compressed tables use zlib 1.2.8
160907 20:10:34 InnoDB: Using Linux native AIO
/usr/sbin/mysqld: Can't create/write to file '/tmp/ibVCxKO4' (Errcode: 13)
160907 20:10:34  InnoDB: Error: unable to create temporary file; errno: 13
160907 20:10:34 [ERROR] Plugin 'InnoDB' init function returned error.
160907 20:10:34 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
160907 20:10:34 [ERROR] Unknown/unsupported storage engine: InnoDB
160907 20:10:34 [ERROR] Aborting

160907 20:10:34 [Note] /usr/sbin/mysqld: Shutdown complete

160907 20:10:34 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended

was ist das ?? was tun ?
 
Zuletzt bearbeitet:
Hast du irgendwas an der MySQL Konfiguration geändert ?

/usr/sbin/mysqld: Can't create/write to file '/tmp/ibVCxKO4' (Errcode: 13)

mal chmod 777 auf den /tmp ordner

Plugin 'InnoDB' registration as a STORAGE ENGINE failed.

in der my.cnf im [mysqld] block einfügen

skip-innodb

dann mit service mysql restart den mysql dienst neu starten, falls wieder fehler auftauchen hier posten.

Gruß
 
1. also ich nicht .
2. hab ich
3. wo ist diese cnf Datei ?
 
na mit einem Editor die my.cnf öffnen, musst in /etc/mysql/ oder sowas schauen.

dann dort die Zeile
Code:
skip-innodb
im [mysqld] block einfügen und mysql neu starten.

ich gehe mal davon aus dass du einen eigenen server hast ?

Gruß
 
einfach unter skip-external-locking ?

Code:
[mysqld]
#
# * Basic Settings
#
user            = mysql
pid-file        = /var/run/mysqld/mysqld.pid
socket          = /var/run/mysqld/mysqld.sock
port            = 3306
basedir         = /usr
datadir         = /var/lib/mysql
tmpdir          = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking


wenn ja , erhalte wie auch schon vorher dann das :

Code:
root@vps:/# service mysql restart
Job for mysql.service failed. See 'systemctl status mysql.service' and 'journalctl -xn' for details.


mysql Log :

Code:
160907 20:36:57 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
160907 20:36: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.
160907 20:36:57 [Note] /usr/sbin/mysqld (mysqld 5.5.50-0+deb8u1) starting as process 31706 ...
160907 20:36:57 [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.
160907 20:36:57 [Note] Plugin 'InnoDB' is disabled.
160907 20:36:57 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Table 'plugin' is read only
160907 20:36:57 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
160907 20:36:57 [ERROR] Unknown/unsupported storage engine: InnoDB
160907 20:36:57 [ERROR] Aborting

160907 20:36:57 [Note] /usr/sbin/mysqld: Shutdown complete

160907 20:36:57 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
 
Zuletzt bearbeitet:
Dir fehlt noch die Tabelle Plugin in der Mysql Datenbank.

Entweder versuchen über
Code:
mysql_upgrade
die fehlende Tabelle nachträglich einzufügen, wird aber schwierig wenn mysql nicht läuft.

google einfach mal nach ner lösung zum fehler
Code:
Can't open the mysql.plugin table.

ich bin im moment wieder unterwegs und kann nur bedingt schreiben über mobil.

gruß
 
Zurück
Oben