Monday, November 11, 2013

Commands

MY SQL



mysql -u<username> -p<password> <DB> -h<hostname> < <sqlfilename>

copying schema from one location to another location:desitnation

time mysqldump -h<source_hostname> -u<source_username> -p<source_password> -P<source_port> -R <source_db_schema>| mysql -h<desitnation_hostname> -u<desitnation_username>  -p <desitnation_password> -P<desitnation_port>  <desitnation_db_schema>.



Security Certificates

  1. Cryptography Basics Understand Key Concepts : Encryption, decryption, hashing, and digital signatures. Key terms: confidentiality, inte...