GoogleCloud: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (update sendgrid email relay link) |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Running gcloud == | == Running gcloud == | ||
< | <syntaxhighlight lang=bash> | ||
# if needed $ export PATH=$PATH:~/google-cloud-sdk/bin | # if needed $ export PATH=$PATH:~/google-cloud-sdk/bin | ||
Line 11: | Line 11: | ||
$ gcloud compute instances list | $ gcloud compute instances list | ||
$ gcloud compute ssh | $ gcloud compute ssh | ||
$ gcloud compute ssh | $ gcloud compute ssh user@instance-1 --zone us-central1-a | ||
</ | </syntaxhighlight> | ||
== Setup sendgrid email relay == | == Setup sendgrid email relay == | ||
https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid | https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid | ||
== Install heirloom-mailx == | == Install heirloom-mailx == | ||
Needed to attach files via mailx, i.e. | Needed to attach files via mailx, i.e. | ||
< | <syntaxhighlight lang=bash> | ||
$ sudo apt-get install heirloom-mailx | $ sudo apt-get install heirloom-mailx | ||
$ echo "sqlite db drew.invadelabs.com" | mailx -a drew_wiki.sqlite.xz -s "sqlite db drew.invadelabs.com" | $ echo "sqlite db drew.invadelabs.com" | mailx -a drew_wiki.sqlite.xz -s "sqlite db drew.invadelabs.com" drew@invadelabs.com | ||
</ | </syntaxhighlight> |
Latest revision as of 12:22, 26 February 2018
Download gcloud sdk
Running gcloud
# if needed $ export PATH=$PATH:~/google-cloud-sdk/bin
$ gcloud auth list
$ gcloud auth login
$ gcloud config set project drew-1298
$ gcloud compute instances list
$ gcloud compute ssh
$ gcloud compute ssh user@instance-1 --zone us-central1-a
Setup sendgrid email relay
https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid
Install heirloom-mailx
Needed to attach files via mailx, i.e.
$ sudo apt-get install heirloom-mailx
$ echo "sqlite db drew.invadelabs.com" | mailx -a drew_wiki.sqlite.xz -s "sqlite db drew.invadelabs.com" [email protected]