#On the client:
sudo ssh-keygen -f /root/topicTunnel.pem
#On the Server:
sudo useradd -m -s /bin/false tunnel
sudo -u tunnel bash
cd /home/tunnel
mkdir .ssh
chmod 700 .ssh
#On the client:
sudo ssh-keygen -f /root/topicTunnel.pem
#On the Server:
sudo useradd -m -s /bin/false tunnel
sudo -u tunnel bash
cd /home/tunnel
mkdir .ssh
chmod 700 .ssh
En este documento se explican las convenciones a seguir para hacer el tageado de versiones en nuestros desarrollos.
Vamos a utilizar como base lo explicado aqui
En resumen es lo siguiente vMAJOR.MINOR.PATH:
Además, siempre que creemos un nuevo tag de versión actualizaremos el tag latest para que siempre apunte a la ultima versión tageada.
Error: | |
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed | |
Motivo: | |
Fallo en la lectura de autoridades de certificación | |
Work around: | |
Fichero: /Applications/Vagrant/embedded/lib/ruby/1.9.1/net/http.rb | |
Añadir en la linea 779 aprox: |
#Option 1: lsof | |
sudo lsof -n -i | grep 23889 | wc -l | |
#Option 2: python + psutil | |
>sudo python | |
import psutil | |
len(psutil.Process(23889).get_connections(kind='inet')) |
Only do this if you understand the consequences: all node programs will be able to bind on ports < 1024
sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/node
Important: your node location may vary. Use which node
to find it, or use it directly in the command:
# export GIT_HOME="${HOME}/dev/git" | |
# turns off the license screen | |
startup_message off | |
# Status bar | |
hardstatus on | |
hardstatus alwayslastline | |
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W}%c %{g}]' |
In .bash_profile (or .bashrc): | |
# Git completion | |
source /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-completion.bash | |
source /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-prompt.sh | |
# My prompt | |
#http://ubuntulife.files.wordpress.com/2011/04/bashcolor.png | |
export PS1='\e[01;36m\]\u:\[\e[01;33m\]\w $(__git_ps1 "(%s)")\[\e[0m\]\n>' |