Cada dia me gusta más ruby D:. (Se que ruby es de niñas :(, pero aún no me siento apto para python D:)

(Fuente: humbug.in)

Ruby on rails: `initialize’: Address already in use - bind(2)

I would like to recommend write this in console:
  lsof -i :3000
(given that the zombie server is running on port 3000)

and then to check a reported <PID>:
  ps ax | grep <PID>

before final:
  kill -QUIT <PID>

(Fuente: ruby-forum.com)

UBUNTU: apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName

Hacer lo siguiente en la consola:

vim /etc/apache2/httpd.conf

Agregar dentro del archivo

ServerName localhost

Solucionado.

pdt: Yo probe colocando esta linea de código al final o al principio del archivo y de ambas formas funcionaba. Por si a alguien le surge la duda si hay que colocarlo dentro de alguna lineas especial (ejemplo: de virtualhost), no es necesario.

(Fuente: twitter.com)