0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AWSサーバーのデータを確認する方法

Posted at

記事概要

AWSサーバーを本番環境として利用している場合の、DBデータの確認方法を説明する。

言語やフレームワーク

使用技術
フロントエンド HTML
CSS
バックエンド Ruby 3.2.0
Ruby on Rails 7.0.8.6
データベース MySQL(mariadb)
インフラ AWS
API -
その他 -

前提

  • AWSサーバーのDBが起動している
  • AWSサーバーのDBに、テーブルが存在する

手順

  1. EC2にログイン
  2. MySQLにアクセス
    % mysql -u root -p
    
  3. EC2のrootユーザーのパスワードを入力
    入力した値は表示されない
  4. DBを確認 ※スキップ可
    % show databases;
    
  5. 表示するDBを選択
    % use [DB名];
    
  6. DBのテーブルを表示 ※スキップ可
    % show tables;
    
  7. テーブルの中身を確認 ※下記はテーブルの全データを表示するSQL文
    % select * from [テーブル名];
    
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?