为了开发新的应用程序和旅行工匠



我刚刚启动了一个新的L5.1应用程序与forrabbit新的应用程序功能,但我找不到如何使用工匠命令的方式,在旧的应用程序中我使用ssh,但现在它是不可访问的。我需要"php artisan migrate"one_answers"php artisan db:seed"命令,我怎么能没有ssh访问?

添加一个新的数据库配置到config/database.php:

// ..
'connections' => [
    // ..
    'mysql-tunnel' => [
        'driver'    => 'mysql',
        'host'      => '127.0.0.1',
        'port'      => '13306',
        'database'  => 'my-app',
        'username'  => 'my-app',
        // don't save the password with your code
        'password'  => env('DB_PASSWORD', ''),
        'charset'   => 'utf8',
        'collation' => 'utf8_unicode_ci',
        'prefix'    => '',
        'strict'    => false,
    ],
],

然后建立隧道:

$ ssh -N -L 13306:my-app.mysql.eu2.frbit.com:3306 tunnel@tunnel.eu2.frbit.com

现在你可以在本地运行了(在另一个终端窗口):

$ DB_PASSWORD="your-password" php artisan migrate --database=mysql-tunnel
$ DB_PASSWORD="your-password" php artisan db:seed --database=mysql-tunnel

相关内容

  • 没有找到相关文章

最新更新