web-dev-qa-db-ja.com

MySQLエラー-#1932-テーブル 'phpmyadmin.pma user config'はエンジンに存在しません

XAMPPを使用してMySQLでデータベースをセットアップしようとしています。 localhostのphpMyAdminでこれを実行しています(Apacheが実行されています)。私の側での唯一のアクションは、データベースの新しい未使用の名前を入力し、[作成]をクリックして...

このエラーが発生します:

Error
SQL query: DocumentationEdit Edit


SELECT MAX(version) FROM `phpmyadmin`.`pma__tracking` WHERE `db_name` = 'stuff_tessss'  AND `table_name` = ''  AND FIND_IN_SET('CREATE DATABASE',tracking) > 0
MySQL said: Documentation

#1932-テーブル 'phpmyadmin.pma__tracking'はエンジンに存在しません

データベースがデータベースのリストに表示されています。いずれかをクリックすると、ロードされなくなるまで永遠に1日かかります。

スタックや他の場所で他の1932エラーソリューションを調査して実装しようとしましたが、役に立ちませんでした。

ここに私が利用している技術の以下のバージョンがあります:

  • OS Xエルキャピタン-10.11.1
  • サーバーバージョン:Apache/2.4.16(Unix)
  • PHP 5.6.15(CakePHPが依存関係について不平を言っていたため、-intl拡張子を付けて再インストールする必要がありました)
  • CakePHP 3.0(これはコマンドラインからcakePHPを利用するためにComposerのインストールが必要でした。これはPHPから実行されると信じています)
  • mySQL Ver 14.14 Distrib 5.7.9、osx10.11(x86_64)
  • XAMPP 5.6.14-4

Linuxで実行したり、古いバージョンのXAMPPを使用したりするなど、あらゆる種類のソリューションを読みました。ソリューションを知っている賢い人がいると思いました。私は主に、どこで研究すべきかを理解しようとしても苦労しました。

私を正しい方向に向けることができる人がいれば、とても感謝しています!

8
smoke

同じエラーが発生し、mysql/dataフォルダーを別のフォルダーに変更すると発生しました。
2つのファイルを除き、mysql/dataフォルダー内のすべてのフォルダーを新しい場所にコピーしました。それらはib_logfile0ib_logfile1です。これらは、MySQLサーバーの起動時に自動的に作成されます。それは私のために働いた。

5

最後に、解決策を見つけました。
phpmyadminデータベースを展開すると、テーブル 'pma__tracking'が実際に存在することがわかります。

しかし#1932のシステムエラーコール-テーブル 'phpmyadmin.pma__tracking'はエンジンに存在しません。

したがって、最初に古いpma __ *データベースを削除し、後で再構成してみてください。

1。

2。phpmyadmin/sql /にあるphpmyadminのsql、「create_tables.sql」などを再インストールし、mysql <create_table.sqlなどで実行.

それから動作します。

5
Albert.Zhang

要するに、行50-69のconfig.inc.phpの内容を...

 $cfg['Servers'][$i]['pma__bookmark'] = 'pma__bookmark';
 $cfg['Servers'][$i]['pma__relation'] = 'pma__relation';
 $cfg['Servers'][$i]['pma__table_info'] = 'pma__table_info';
 $cfg['Servers'][$i]['pma__table_coords'] = 'pma__table_coords';
 $cfg['Servers'][$i]['pma__pdf_pages'] = 'pma__pdf_pages';
 $cfg['Servers'][$i]['pma__column_info'] = 'pma__column_info';
 $cfg['Servers'][$i]['pma__table_uiprefs'] = 'pma__history';
 $cfg['Servers'][$i]['pma__table_uiprefs'] = 'pma__table_uiprefs';
 $cfg['Servers'][$i]['pma__tracking'] = 'pma__tracking';
 $cfg['Servers'][$i]['pma__userconfig'] = 'pma__userconfig';
 $cfg['Servers'][$i]['pma__recent'] = 'pma__recent';
 $cfg['Servers'][$i]['pma__users'] = 'pma__users';
 $cfg['Servers'][$i]['pma__usergroups'] = 'pma__usergroups';
 $cfg['Servers'][$i]['pma__navigationhiding'] = 'pma__navigationhiding';
 $cfg['Servers'][$i]['pma__savedsearches'] = 'pma__savedsearches';
 $cfg['Servers'][$i]['pma__central_columns'] = 'pma__central_columns';
 $cfg['Servers'][$i]['pma__designer_coords'] = 'pma__designer_coords';
 $cfg['Servers'][$i]['pma__designer_settings'] = 'pma__designer_settings';
 $cfg['Servers'][$i]['pma__export_templates'] = 'pma__export_templates';
 $cfg['Servers'][$i]['pma__favorite'] = 'pma__favorite';
3
Jeem Been

Ubuntu 14.04 TrustyでErrorCode#1932が機能しました

$cfg['Servers'][$i]['pma__bookmark'] = 'pma__bookmark';
$cfg['Servers'][$i]['pma__relation'] = 'pma__relation';
$cfg['Servers'][$i]['pma__table_info'] = 'pma__table_info';
$cfg['Servers'][$i]['pma__table_coords'] = 'pma__table_coords';
$cfg['Servers'][$i]['pma__pdf_pages'] = 'pma__pdf_pages';
$cfg['Servers'][$i]['pma__column_info'] = 'pma__column_info';
$cfg['Servers'][$i]['pma__table_uiprefs'] = 'pma__history';
$cfg['Servers'][$i]['pma__table_uiprefs'] = 'pma__table_uiprefs';
$cfg['Servers'][$i]['pma__tracking'] = 'pma__tracking';
$cfg['Servers'][$i]['pma__userconfig'] = 'pma__userconfig';
$cfg['Servers'][$i]['pma__recent'] = 'pma__recent';
$cfg['Servers'][$i]['pma__users'] = 'pma__users';
$cfg['Servers'][$i]['pma__usergroups'] = 'pma__usergroups';
$cfg['Servers'][$i]['pma__navigationhiding'] = 'pma__navigationhiding';
$cfg['Servers'][$i]['pma__savedsearches'] = 'pma__savedsearches';
$cfg['Servers'][$i]['pma__central_columns'] = 'pma__central_columns';
$cfg['Servers'][$i]['pma__designer_coords'] = 'pma__designer_coords';
$cfg['Servers'][$i]['pma__designer_settings'] = 'pma__designer_settings';   
$cfg['Servers'][$i]['pma__export_templates'] = 'pma__export_templates';
$cfg['Servers'][$i]['pma__favorite'] = 'pma__favorite';
1
Asghar Abbas

これはこの問題に対する私の経験です。多分それはあなたを助けるかもしれません:

すべてのfolders and files/dataフォルダー内にコピーして、dbからバックアップしました。

別のコンピューターのXamppに切り替えて、コピーを開始しましたすべてのフォルダーとファイル以前のコピーphpmyadmin/dataフォルダーからコピーしました。

それで、私がしたとき、この問題は私に起こりました。

この問題を解決するには:

1-​​= phpmyadmin/dataフォルダーから、バックアップしたいテーブルと同じ名前のフォルダーのみをコピーしてバックアップを作成しました。

2- Xamppをアンインストールします。

- Xamppを再インストールします。

4-コピーすべてのフォルダー手順1でmysql/data folder内に保持されます。このフォルダはデータベーステーブルのみであり、注意してくださいタッチしないでください別のファイルとフォルダ、またはコピーするときに何かを置き換える。

1
abas nikzad

ダウンロード 以前のバージョンである必要があります。xamppは実際には最新バージョンのバグを提示します。

幸運!

0
David Hackro

XAMPPを使用したUbuntu 14でも同じ問題がありました。これが私がやったことです。

  1. Mysqlがxamppで実行されている場合は停止します
  2. vi /opt/lamp/phpmyadmin/config.inc.php(suでない場合はSudoを使用してください)
  3. 取り替える

    $cfg['Servers'][1]['relation'] = 'pma__relation';
    $cfg['Servers'][1]['userconfig'] = 'pma__userconfig';
    $cfg['Servers'][1]['table_info'] = 'pma__table_info';
    ...
    

    $cfg['Servers'][1]['pma__relation'] = 'pma__relation';
    $cfg['Servers'][1]['pma__userconfig'] = 'pma__userconfig';
    $cfg['Servers'][1]['pma__table_info'] = 'pma__table_info';
    ...
    

    基本的に、右側と同様に左側にpma__プレフィックスを追加します。

  4. Mysqlを実行してlocalhost/phpmyadminにアクセスし、dbをクリックして機能するかどうかを確認します。

お役に立てれば。

0
ash kim

上記のすべてのソリューションが機能しない場合は、以下を試してください。

$ i = 1を追加;/*サーバー構成後* /

phpmyadmin config.inc.phpファイルの$ i = 0の代わりに

ローカルWindowsサーバーでXAMPPを実行すると、mysqlデータファイルは通常のインストールパス(C:\ Xampp)ではなく、別のディスクにあります。

これで、pma__table ...と$ i = 1のような二重の__を持つphpmyadminテーブルができました。

0
S.E.

OSXでも同じ問題が発生しました。私はのようなものを交換しようとしました
$cfg['Servers'][$i]['usergroups'] to $cfg['Servers'][$i]['pma__usergroups'] ...

サファリでは動作しますが、クロムではまだ失敗します。
しかし、サファリのいわゆる「作業」は、変更された機能がまったく有効でないというメッセージを受け取ることができます。
ただし、「作業」とは、左にリストされているデータベースにアクセスできることを意味します。
Googleの#1932の問題は新しく、急成長しているため、この問題はXAMPPの新しいバージョンのバグかもしれません。
バグが解決されるまで、代わりに古いバージョンのXAMPPを試してみることができます。
http://sourceforge.net/projects/xampp/files/XAMPP%20Linux/5.6.12/
お役に立てば幸いです。

0
Albert.Zhang
make change in changes in /opt/lampp/phpmyadmin/config.inc.php    

<?php
    /* vim: set expandtab sw=4 ts=4 sts=4: */
    /**
     * phpMyAdmin sample configuration, you can use it as base for
     * manual configuration. For easier setup you can use setup/
     *
     * All directives are explained in documentation in the doc/ folder
     * or at <http://docs.phpmyadmin.net/>.
     *
     * @package PhpMyAdmin
     */

    /**
     * This is needed for cookie based authentication to encrypt password in
     * cookie
     */
    $cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */

    /**
     * Servers configuration
     */
    $i = 0;

    /**
     * First server
     */
    $i++;
    /* Authentication type */
    $cfg['Servers'][$i]['auth_type'] = 'config';
    $cfg['Servers'][$i]['user'] = 'root';
    $cfg['Servers'][$i]['password'] = '';
    /* Server parameters */
    //$cfg['Servers'][$i]['Host'] = 'localhost';
    //$cfg['Servers'][$i]['connect_type'] = 'tcp';
    $cfg['Servers'][$i]['compress'] = false;
    $cfg['Servers'][$i]['AllowNoPassword'] = true;

    /**
     * phpMyAdmin configuration storage settings.
     */

    /* User used to manipulate with storage */
    // $cfg['Servers'][$i]['controlhost'] = '';
    // $cfg['Servers'][$i]['controlport'] = '';



    $cfg['Servers'][1]['pmadb'] = 'phpmyadmin';
    $cfg['Servers'][1]['controluser'] = 'pma';
    $cfg['Servers'][1]['controlpass'] = '';

    $cfg['Servers'][1]['bookmarktable'] = 'pma_bookmark';
    $cfg['Servers'][1]['relation'] = 'pma_relation';
    $cfg['Servers'][1]['userconfig'] = 'pma_userconfig';
    $cfg['Servers'][1]['table_info'] = 'pma_table_info';
    $cfg['Servers'][1]['column_info'] = 'pma_column_info';
    $cfg['Servers'][1]['history'] = 'pma_history';
    $cfg['Servers'][1]['recent'] = 'pma_recent';
    $cfg['Servers'][1]['table_uiprefs'] = 'pma_table_uiprefs';
    $cfg['Servers'][1]['tracking'] = 'pma_tracking';
    $cfg['Servers'][1]['table_coords'] = 'pma_table_coords';
    $cfg['Servers'][1]['pdf_pages'] = 'pma_pdf_pages';
    $cfg['Servers'][1]['designer_coords'] = 'pma_designer_coords';



    // $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
    // $cfg['Servers'][$i]['users'] = 'pma__users';
    // $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
    // $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
    // $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
    // $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
    // $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
    // $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
    /* Contrib / Swekey authentication */
    // $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';

    /**
     * End of servers configuration
     */

    /**
     * Directories for saving/loading files from server
     */
    $cfg['UploadDir'] = '';
    $cfg['SaveDir'] = '';

    /**
     * Whether to display icons or text or both icons and text in table row
     * action segment. Value can be either of 'icons', 'text' or 'both'.
     * default = 'both'
     */
    //$cfg['RowActionType'] = 'icons';

    /**
     * Defines whether a user should be displayed a "show all (records)"
     * button in browse mode or not.
     * default = false
     */
    //$cfg['ShowAll'] = true;

    /**
     * Number of rows displayed when browsing a result set. If the result
     * set contains more rows, "Previous" and "Next".
     * Possible values: 25, 50, 100, 250, 500
     * default = 25
     */
    //$cfg['MaxRows'] = 50;

    /**
     * Disallow editing of binary fields
     * valid values are:
     *   false    allow editing
     *   'blob'   allow editing except for BLOB fields
     *   'noblob' disallow editing except for BLOB fields
     *   'all'    disallow editing
     * default = 'blob'
     */
    //$cfg['ProtectBinary'] = false;

    /**
     * Default language to use, if not browser-defined or user-defined
     * (you find all languages in the locale folder)
     * uncomment the desired line:
     * default = 'en'
     */
    //$cfg['DefaultLang'] = 'en';
    //$cfg['DefaultLang'] = 'de';

    /**
     * How many columns should be used for table display of a database?
     * (a value larger than 1 results in some information being hidden)
     * default = 1
     */
    //$cfg['PropertiesNumColumns'] = 2;

    /**
     * Set to true if you want DB-based query history.If false, this utilizes
     * JS-routines to display query history (lost by window close)
     *
     * This requires configuration storage enabled, see above.
     * default = false
     */
    //$cfg['QueryHistoryDB'] = true;

    /**
     * When using DB-based query history, how many entries should be kept?
     * default = 25
     */
    //$cfg['QueryHistoryMax'] = 100;

    /**
     * Whether or not to query the user before sending the error report to
     * the phpMyAdmin team when a JavaScript error occurs
     *
     * Available options
     * ('ask' | 'always' | 'never')
     * default = 'ask'
     */
    //$cfg['SendErrorReports'] = 'always';

    /**
     * You can find more configuration options in the documentation
     * in the doc/ folder or at <http://docs.phpmyadmin.net/>.
     */
0
P type Concept