The LiteBreeze blog

Author: KM

KM
Senior Technical Lead | 15.0 years experience

Anybody who has worked with Karthik would not be able to imagine him being anything but a developer. For, he is the most driven and enthusiastic developer you will ever meet! 

1 min read

The MySQL tips and tricks that you could use

Fetch remote database How to import a remote database easily from command prompt in Windows. Since we can access databases remotely, you can use mysqldump from your windows machine to fetch the remote database. From command line: mysqldump -u USER –password=MYPASSWORD DATABASE_TO_DUMP -h HOST > backup.sql Checking the slowest queries on the server: SSH: mysqldumpslow

2 min read

Useful Linux specific commands that you will not find in Windows

Using SSH to login to the Linux shell presents you with a range of very effective tools that you do not find in, for example Windows. Here comes a list of convenient commands: Change directory: cd /home/username/www List content of directory: ll Show size of each directory in current directory: du -sh ./* Remove file