LoginSignup
0
0

More than 5 years have passed since last update.

Laravel5.3 Mysqlの設定

Last updated at Posted at 2016-09-10

Mysqlの設定

初期のmysqlアカウント

vagrant ssh
$ cd ~/Code/Laravel
$ php artisan migrate:install
$ mysql -u homestead -p
$ Enter password:secret
mysql> show databases;
mysql> use homesetad;
mysql> show tables;
+--------------------+
| Database |
+--------------------+
| information_schema |
| homestead |
| mysql |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.10 sec)

/config/database.php の編集
databse,username,passwordなどを編集する

        'mysql' => [
            'driver' => 'mysql',
            'host' => env('DB_HOST', 'localhost'),
            'port' => env('DB_PORT', '3306'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'charset' => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix' => '',
            'strict' => true,
            'engine' => null,
        ],

$ mysql -u ユーザー名 -p

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0