Accessing cloud.google.com bitnami project files from ubuntu
Site address
http://IPADDRESS/
Admin
user: user
Admin
password (Temporary) : PASSWORD
How to generate a SSH key in your PC ?
ssh-keygen
(see the path for generating key file enter the key filename
“/home/shakalya/.ssh/id_rsa”) dff-ssh-key
(if same key file name wanna override?) y
(passphrase can be leave empty)
(again)
cat
dff-ssh-key
(this is a private key. Do nothing with it.)
cat
dff-ssh-key.pub
(this is a bublic key. Copy this and paste in VM instance ssh key meta. replace the USER@HOSTNAME by bitnami@hostname as your cloud user is bitnami)
chmod
-R 400 /home/shakalya/.ssh/dff-ssh-key
(change permission. This might not necessary)
ssh-add
/home/shakalya/dff-ssh-key
(add ssh key)
(Accessing through ubuntu file manager)
sftp://bitnami@IPADDRESS/home/bitnami
(Accessing through terminal SSH)
ssh
-i /home/shakalya/dff-key bitnami@IPADDRESS
(Accessing PHPMYADMIN)
ssh
-N -L 8888:127.0.0.1:80 bitnami@IPADDRESS
(creates a tunnel , NO OUTPUT , just open http://127.0.0.1:8888/phpmyadmin in browser)