AWS EC 2でのMySQLサーバの導入方法


AWS EC 2でのMySQLサーバの導入方法
今日は一日中EC 2にmysqlserverを構築しました.全部で4回交換してやっと成功した.
1.EC 2インスタンスを作成し、インスタンスに接続する


2.mysqlのインストール
sudo -s
apt-get update
apt-get install mysql-server
3.mysqlに接続してパスワードを設定する
mysql -u root -p
「パスワードの入力」ウィンドウで企業を直接入力
select Host, User, authentication_string from user;

update user set authentication_string=password('1234') where user='root';

FLUSH PRIVILEGES;

exit
4.外部接続の許可
cd /etc/mysql/mysql.conf.d

vi mysqld.cnf
後続bind-addressを0.0.0.0に変更
(iクリックして変更->ctrl+c->:wq企業)
service mysql restart

mysql -u root -p
「パスワードの入力」ウィンドウに、先ほど設定した1234を入力します.
create user 'username'@'%' identified by 'password';

grant all privileges on *.* to username@'%';
以降のワークベンチに対応するmysqlを接続します.
5.インストールノード
root계정 처음으로 와서 node 설치

curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -

sudo apt-get install -y nodejs
6.導入後に実行
sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3000
3000ポートへのアクセス要求を80のコマンドに変換します.以降のpm 2で運転します.