Tag: — tepezcuintle @ 16:50

This is a reminder of how to backup the schema of a complete database
mysqldump –no-data -h localhost -u root -ppassword mydatabase > mydatabase_backup
This is if you want to only backup certain tables schema.
mysqldump –no-data -h localhost -u root -ppassword mydatabase table1 table2 > mydatabase_backup.sql
Continua”MySQL Backup Table Schema Structure and Backup only Data”
Tag: — tepezcuintle @ 16:36

The Most Common OpenSSL Commands
One of the most versatile SSL tools is OpenSSL which is an open source implementation of the SSL protocol. There are versions of OpenSSL for nearly every platform, including Windows, Linux, and Mac OS X. OpenSSL is commonly used to create the CSR and private key for many different platforms, including Apache. However, it also has hundreds of different functions that allow you to view the details of a CSR or certificate, compare an MD5 hash of the certificate and private key (to make sure they match), verify that a certificate is installed properly on any website, and convert the certificate to a different format.
Continua”The Most Common OpenSSL Commands”
Tag: — tepezcuintle @ 16:31

Introduction
OpenSSL deserves a lot of credit. It is an extremely useful, valuable Open Source project. When
people talk about how successful Apache is, rock-solid crypto toolkits like OpenSSL and OpenSSH should
also be mentioned. Here are a few (of the many) functions that I have found useful, along with examples of
how to use them:
Continua”Useful OpenSSL Tricks”