Tag: mysql

  • Repairing MYSQL database after a crash

    With linux, its a good idea to monitor your disc space carefully as if you run out of space you can create all sorts of problem.  Elsewhere I will post a disc space usage script that you might find useful. So you had a crash due to lack of space it is highly likely that…

  • How to upload a mysql database from a sql.gz file

    How to upload a database from a database.sql.gz file.  For instance c-panel databse backup can create this file and you might want to use it up upload to a test system or when moving server zcat  database.sql.gz | mysql -u username -p -h localhost databasename password: Executing this command line in the shell on your…