Get all IPs from host


Ubuntu 16.x
ifconfig | grep inet |awk '{print $2}'


Ubuntu 18.x
ifconfig | grep inet |awk '{print $3}'

Certificate - PEM to PKCS12

  Convert Lets encrypt PEM to tomcat PKCS12  openssl pkcs12 -export \ - in fullchain.pem \ -inkey privkey.pem \ -out server.p12 \ -...

Mais vistos