Skip to content

Instantly share code, notes, and snippets.

View geek182's full-sized avatar

Leandro Azevedo geek182

View GitHub Profile
@geek182
geek182 / docker-survival-kit
Last active May 10, 2018 17:20
docker survival kit
#expose port 9090 to host and 80 to container
#order (HOST:CONTAINER)
docker run -d -p 9090:80 -t nginx
#using commit
https://blog.codeship.com/using-docker-commit-to-create-and-change-an-image/
@geek182
geek182 / mongodb
Last active January 3, 2018 20:52
mongodb-survival-kit
db.grantRolesToUser(
"username",
[
{ role: "readWrite", db: "database-name" }
]
)
db.createUser(
{
user: "user",
@geek182
geek182 / monitor-redis-example
Created December 29, 2017 13:06
example how monitor metrics in redis in bash
#!/bin/bash
redis_memory=$(/usr/local/redis/redis-3.2.1/src/redis-cli -p $1 info memory | awk -F ":" '/used_memory:/{print $2}')
echo $X $redis_memory
#test item
#from server
zabbix_get -s server -k item.userparameters[]
#from client
zabbix_agentd -t mysql.pedidos[]
@geek182
geek182 / vim-survival-kit
Last active May 20, 2018 11:54
vim-survival-kit
#Search and replace
:s/foo/bar/g Change each 'foo' to 'bar' in the current line.
:%s/foo/bar/g Change each 'foo' to 'bar' in all the lines.
:5,12s/foo/bar/g Change each 'foo' to 'bar' for all lines from line 5 to line 12 (inclusive).
Comment all lines: :%s/^/#
Comment lines 10 - 15: :10,15s/^/#
Comment line 10 to current line: :10,.s/^/#
Comment line 10 to end: :10,$s/^/#
#delete
@geek182
geek182 / ansible-survival-kit
Last active December 4, 2017 21:37
ansible survival kit
#check syntax and pass variables
#doc dry run
ansible-playbook playbook.yml -e env=prod --check
#Get fact localhost
ansible localhost -m setup
#execute local playbook
http://docs.ansible.com/ansible/latest/playbooks_delegation.html#local-playbooks
@geek182
geek182 / www.conf
Created November 5, 2017 01:18 — forked from evansolomon/www.conf
PHP-FPM config
; Start a new pool named 'www'.
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[www]
; Per pool prefix
; It only applies on the following directives:
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
@geek182
geek182 / bash shorcuts
Last active September 8, 2017 00:41
bash shorcuts
SKORKS
Bash Shortcuts For Maximum Productivity
September 15, 2009 By Alan Skorkin 74 Comments
MaximumIt may or may not surprise you to know that the bash shell has a very rich array of convenient shortcuts that can make your life, working with the command line, a whole lot easier. This ability to edit the command line using shortcuts is provided by the GNU Readline library. This library is used by many other *nix application besides bash, so learning some of these shortcuts will not only allow you to zip around bash commands with absurd ease :), but can also make you more proficient in using a variety of other *nix applications that use Readline. I don’t want to get into Readline too deeply so I’ll just mention one more thing. By default Readline uses emacs key bindings, although it can be configured to use the vi editing mode, I however prefer to learn the default behavior of most applications (I find it makes my life easier not having to constantly customize stuff). If you’re familiar with emacs then many o
@geek182
geek182 / vim_cheatsheet.md
Created September 6, 2017 01:57 — forked from awidegreen/vim_cheatsheet.md
Vim shortcuts

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close
@geek182
geek182 / mysql survival kit for sysops
Last active June 9, 2017 16:41
quick commans for daily
#create user
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
% = anywhere
#Permission
GRANT SELECT, INSERT ON *.* TO 'someuser'@'somehost';