1
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?

More than 5 years have passed since last update.

Google Cloud Platform のwordpressのphpmyadminをMacで使う時にハマった記録

Last updated at Posted at 2019-07-08

#GCPでWordPressのインスタンスを立ち上げる
「wordpress certified by bitnami」
のインスタンスを立ち上げる。
#phpmyadminしようとしてハマったところ
https://docs.bitnami.com/google/apps/wordpress-pro/get-started/access-phpmyadmin/
を参考にして

ssh -N -L 8888:127.0.0.1:80 -i {KEYFILE} bitnami@{SERVER-IP}

とコマンドを打ってsshトンネリングを試してみるが、元記事にあったアドレス
http://127.0.0.1:8888/phpmyadmin
にアクセスしてもつながらない。:frowning2:
#Macがlistenしてるポートを調査してみる
https://qiita.com/yokozawa/items/dbcb3b31f9308e4dcefc
を参考にMacがlistenしてるポートを見てみると

sudo lsof -i -P | grep "LISTEN"

どうやら、127.0.0.1:8888ではなく、
localhost:8888と認識されているらしい。
#と言うことで
http://localhost:8888/phpmyadmin/
で無事アクセスできました!:smiley:

#追記
Bitnami WordPress with NGINX and SSLでは、もう一工夫いるようです。。。
関係各位の方々にご迷惑をおかけしてしまったかも。。

1
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
1
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?