LoginSignup
0
0

More than 1 year has passed since last update.

Cloud9でphpMyAdminを使用する方法

Posted at

環境

PHP 7.3.30
laravel 8.83.23
mysql Ver 14.14

方法

  1. mysql -u root -p
  2. update mysql.user set password=password('root') where user='root';
  3. exit;
  4. cd your_project/public
  5. wget https://files.phpmyadmin.net/phpMyAdmin/4.8.3/phpMyAdmin-4.8.3-all-languages.zip
  6. unzip phpMyAdmin-4.8.3-all-languages.zip
  7. public 以下に回答されたフォルダ名をphpMyAdminへ変更
  8. cd ../
  9. php artisan serve --port=8080
  10. Previewを表示
  11. URLの末尾に/phpMyAdmin/index.phpを追加して表示
  12. .env内を修正する
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