0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

参入時のセットアップ忘れがちだから備忘録に残す

Posted at

前提

  • これは完全に自分のための備忘録です

GitHub SSH 公開鍵の作成

  1. sshに遷移する
  2. ssh-keygenを実行する
  3. catコマンドを使って、sshキーを取得する
  4. あとはgithubに遷移して、settingからSSH and GPG keysを選ぶ
  5. new SSH keysを押下し、先ほど取得したsshキーを貼り付ける
$ cd ~/.ssh

$ ls
authorized_keys2  id_dsa       known_hosts
config            id_dsa.pub

$ ssh-keygen

$ cat ~/.ssh/id_rsa.pub

dampファイルもらうけどどう扱う?

  • docker とか使ってるのであれば基本的にdockerの中でコンテナ立ててるのでdockerに入れてあげれば良い
  • あとはDBverとかを使っているのであれば、DB接続できたらなそっちから突っ込むのも手
    → ただ、dampファイルのデータが大きいと実行が難しい可能性もあるので注意(固まる)

dockerに上げるにはどうすべき

  1. まずはdockerを立ち上げる
  2. その後、docker内の適当な場所にdampファイルをコピーする
  3. DockerDesktopを開き、コンテナからDBを選択し、画像1のページに遷移する
  4. 遷移後、赤枠で囲っているExecを押下
  5. ターミナルになるのでmysqlコマンドを実行する
  6. ターミナルやDBverからデータが投入されていることを確認する

*コマンドでdockerの中に入ることも可能だが、DockerDesktopのExecから行うこともできるので今回はDockerDesktopからデータ投入することを採用

# 適当な場所にdampファイルをコピーする
docker cp ~/Desktop/dump.sql プロジェクト名:/tmp/dumpfile.sql

# mysqlコマンドを実行
mysql -u user -p < /tmp/dumpfile.sql
  • 画像1
    スクリーンショット 2024-09-05 15.36.54.png
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?