AWS Elastic Beanstalkでwebアプリケーションをデプロイしました。
アップロードしたファイル構成は以下の通りです。
. ├── app │ ├── __pycache__ │ │ ├── app.cpython-38.pyc │ │ ├── app.cpython-39.pyc │ │ ├── key.cpython-38.pyc │ │ ├── key.cpython-39.pyc │ │ ├── mail.cpython-38.pyc │ │ └── mail.cpython-39.pyc │ ├── app.py │ ├── key.py │ ├── mail.py │ ├── secret_cred.json │ ├── static │ │ ├── glass.png │ │ └── styles.css │ └── templates │ ├── contact.html │ ├── done.html │ ├── index.html │ ├── layout.html │ ├── login.html │ └── register.html ├── application.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── database.cpython-38.pyc │ │ ├── database.cpython-39.pyc │ │ ├── models.cpython-38.pyc │ │ └── models.cpython-39.pyc │ ├── database.py │ ├── models.py │ └── remind.db ├── requirements.txt └── token.json
pythonのライブラリflask等を用いて簡単なwebアプリケーションをデプロイしました。
app/models/remind.db内にユーザーデータを保存しています。
このremind.dbにアクセスしたいのですが、可能なのでしょうか?
EC2Linuxインスタンスに接続してアクセスできるのかなと思い、ssh接続してみてlsコマンドを実行してみたところ何も表示されませんでした。(EC2インスタンスは2つ構成しておりますが、両方接続してみましたがどちらも結果は同じでした。)
$ eb ssh Select an instance to ssh into 1) i-099733bb5058ecabd 2) i-030ff26983f9ccdbf (default is 1): 1 INFO: Running ssh -i /Users/kouta/.ssh/aws-eb ec2-user@18.183.26.221 The authenticity of host '18.183.26.221 (18.183.26.221)' can't be established. ECDSA key fingerprint is SHA256:*********************************** Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added '18.183.26.221' (ECDSA) to the list of known hosts. _____ _ _ _ ____ _ _ _ | ____| | __ ___| |_(_) ___| __ ) ___ __ _ _ __ ___| |_ __ _| | | __ | _| | |/ _ / __| __| |/ __| _ \ / _ / _\ | '_ / __| __/ _\ | | |/ / | |___| | (_| \__ \ |_| | (__| |_) | __/ (_| | | | \__ \ || (_| | | < |_____|_|\__,_|___/\__|_|\___|____/ \___|\__,_|_| |_|___/\__\__,_|_|_|\_\ Amazon Linux 2 AMI This EC2 instance is managed by AWS Elastic Beanstalk. Changes made via SSH WILL BE LOST if the instance is replaced by auto-scaling. For more information on customizing your Elastic Beanstalk environment, see our documentation here: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html [ec2-user@ip-172-31-8-117 ~]$ ls
アップロードしたremind.dbにアクセスする方法があれば教えて頂きたいです。
よろしくお願いします。