Skip to content

Instantly share code, notes, and snippets.

View EAmarillo's full-sized avatar

Ernesto Amarillo EAmarillo

View GitHub Profile
{
"meta": {
"theme": "Elegant"
},
"basics": {
"name": "Ernesto Amarillo Botti",
"label": "Senior Linux System Administrator at Dev Salsa Family - Elite Seller | Rebate Key Inc | Pixelfy | Join Brands",
"image": "https://avatars.githubusercontent.com/u/36680976?v=4",
"email": "[email protected]",
"phone": "+52 477 552 9074",
@EAmarillo
EAmarillo / mysql_secure.sh
Last active March 22, 2019 15:59 — forked from Mins/mysql_secure.sh
Automating mysql_secure_installation
#!/bin/bash
// Not required in actual script
MYSQL_ROOT_PASSWORD=abcd1234
SECURE_MYSQL=$(expect -c "
set timeout 10
spawn mysql_secure_installation
@EAmarillo
EAmarillo / gist:c61b1603377c6ed69fccfc882f339e2f
Created June 4, 2018 23:05
Docker save and load via SSH, on the fly.
docker save <image_name> | bzip2 | pv | ssh user@host 'bunzip2 | docker load'