January 2013
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
28293031  

Categories

January 2013
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
28293031  

Resetting MySQL Root Password: Red Hat and CentOS

If you’ve forgotten your MySQL root password (or are involved with some nefarious activity), here is how you can reset that password on a Red Hat (RHEL) system or a CentOS system:

Stop MySQL:

root# service mysqld stop

Start MySQL in safe mode:

root# mysqld_safe –skip-grant-tables &

Log into MySQL as root:

[…]

7zip

zip is a nice, cross-platform compression software, similar in purpose to WinZip or GZip. &zip can create and extract those .zip and .gz (and tar.gz) files, but it uses LZMA for its own native compression, which is a much more modern compression format. (if you’re using .rar, please stop already).

Use 7zip to create a […]

Openssl Howto for Apache

 

Display Certificate Subject name in readable format

openssl x509 -in CERTIFICATE_FILE -noout -subject -nameopt multiline,-lname,-align

Top

To verify a certificate chain

openssl verify CERTIFICATE_FILE

 

The file CERTIFICATE_FILE contain the intermediate certificate first and the servers certificate.

Check your Certificate using the Certificate Check tool at the bottom of the page

Top

[…]