AWSによるデプロイを実行するため、サーバー起動前の準備をしている状況です。
今はEC2でログインし、アプリケーションのルートディレクトリにいます。
RDSにて接続しようとしています。
$ bundle exec rails db:migrate RAILS_ENV=production
を行ったところ
Mysql2::Error::ConnectionError: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
のエラーが出ます。
MySQL自体はダウンロードできているみたいなのですが↓
$ mysql --version
mysql Ver 15.1 Distrib 5.5.68-MariaDB, for Linux (x86_64) using readline 5.1
いたるところでこちらのエラーが出ます。
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
systemcti status mysqld
を打つと
● mysqld.service - MySQL Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: activating (start) since 金 2021-02-12 01:15:07 UTC; 321ms ago Docs: man:mysqld(8) http://dev.mysql.com/doc/refman/en/using-systemd.html Process: 24463 ExecStartPre=/usr/bin/mysqld_pre_systemd (code=exited, status=0/SUCCESS) Control: 24486 (mysqld) CGroup: /system.slice/mysqld.service ├─24486 /usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid └─24490 /usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid 2月 12 01:15:07 ip-172-31-31-10.us-east-2.compute.internal systemd[1]: mysqld.service holdoff time.... 2月 12 01:15:07 ip-172-31-31-10.us-east-2.compute.internal systemd[1]: Starting MySQL Server... 2月 12 01:15:07 ip-172-31-31-10.us-east-2.compute.internal mysqld_pre_systemd[24463]: 2021-02-12T01... 2月 12 01:15:07 ip-172-31-31-10.us-east-2.compute.internal mysqld_pre_systemd[24463]: 2021-02-12T01... 2月 12 01:15:07 ip-172-31-31-10.us-east-2.compute.internal
と出るためおそらく起動しているものと思われます。
よろしくお願いいたします。