GoogleCloud: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
No edit summary
m (update sendgrid email relay link)
 
Line 11: Line 11:
$ gcloud compute instances list
$ gcloud compute instances list
$ gcloud compute ssh
$ gcloud compute ssh
$ gcloud compute ssh drewderivative@instance-1 --zone us-central1-a
$ gcloud compute ssh user@instance-1 --zone us-central1-a
</syntaxhighlight>
</syntaxhighlight>


== Setup sendgrid email relay ==
== Setup sendgrid email relay ==
<syntaxhighlight lang=bash>
https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid
https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid
</syntaxhighlight>


== Install heirloom-mailx ==
== Install heirloom-mailx ==
Line 23: Line 21:
<syntaxhighlight lang=bash>
<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" drewderivative@gmail.com
$ echo "sqlite db drew.invadelabs.com" | mailx -a drew_wiki.sqlite.xz -s "sqlite db drew.invadelabs.com" drew@invadelabs.com
</syntaxhighlight>
</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]