Cybersecurity

Cybersecurity

Cyber security has become one of the main concerns for companies, organizations and individuals today. With the growing threat of cyber attacks, protecting our data and personal information has become…

How to quickly back up MySQL in WAMP

Instead of dumping all the tables, as an alternative we can copy the necessary files from the MySQL "data" folder, and then restore these files in your new WAMP installation.…
How to Backup MySQL Database with Putty (SSH)

How to Backup MySQL Database with Putty (SSH)

To back up a database using an SSH client, simply use the following command:   mysqldump --opt -Q -u usuário_banco-de-dados -p nome_banco-de-dados > backup.sql   Replace the names in bold…