土日でわかるPHPプログラミング教室2 トラブルシューティング phpMyAdmin が実行できない
原因
おそらくインストールされていません。oilコマンドのインストールと同じく、環境構築時に失敗しているのかもしれません。
古い書籍ですから仕方ないといえば仕方ないですね。
対策
コンソールからMySQLにアクセスをして、データベースを作る。
今回はphpMyAdminは、データベースを新規作成しているだけなので、少ないコマンドで完了します。
余裕があったらphpMyAdminのインストールを行っても良いと思いますが、今回はそんなに使うわけでもないので…
余裕があったらphpMyAdminのインストールを行っても良いと思いますが、今回はそんなに使うわけでもないので…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
[vagrant@localhost conf.d]$ sudo mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 5.1.73 Source distribution Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create database fuelphp -> ; Query OK, 1 row affected (0.00 sec) mysql> show databases -> ; +--------------------+ | Database | +--------------------+ | information_schema | | fuelphp | | mysql | | test | +--------------------+ 4 rows in set (0.00 sec) mysql> quit; Bye |