LoginSignup
1
0

More than 1 year has passed since last update.

Google Cloud ShellにMySQL Serverをインストール

Last updated at Posted at 2023-03-16
sudo DEBIAN_FRONTEND=noninteractive apt install -y mysql-server
sudo mysqld_safe &
echo "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ''" | sudo mysql
mysql -uroot

phpMyAdminのインストール

wget https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.zip
unzip phpMyAdmin-5.2.1-all-languages.zip
cd phpMyAdmin-5.2.1-all-languages/
cp config.sample.inc.php config.inc.php
echo '$cfg["Servers"][$i]["auth_type"] = "config";' >> config.inc.php
echo '$cfg["Servers"][$i]["AllowNoPassword"] = true;' >> config.inc.php
php -S localhost:8080

image.png

あとは開きましょう

1
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
1
0