-
Don’t let the OOM killer stop MySQL
Many of our customers are successfully using MySQL (or MariaDB) databases on their servers, and they usually run fine as installed and do not need any special attention. However, occasionally problems can occur with MySQL, and this may indicate that some manual tuning is required. One scenario is when the system is short of memory,…
-
Debian 8 (Jessie) available
-
Centos 7 Release – Whats New
-
Connecting to MySQL from external sources + IPTables
By default, MySQL only allows local connections. This is due to security, and for the most part works just fine for most people. Ideally you can use things like PHPMyAdmin for things like this, or even command line. Occasionally people need to connect from externally, either from a web front end, or some other PC,…
-
Sync live sites to in-house dev servers
-
MySQL replication and verification
We have a number of customer using MySQL replication. For the uninitiated, replication copies changes from a master server to a number of slave servers. This makes scaling your service mush easier and helps improve redundancy and failover. An introduction to setting that up is available in our Mysql Replication guide. Once you have replication…
-
Using perror to explain mysql error codes
A customer came to us with a problem copying one database to another, and requested we do it for him. Once we logged in we saw the error fairly quickly ~# mysqldump -uadmin -p`cat /root/.mysqlpass` database >dbdump.sql mysqldump: Got error: 29: File ‘./database/tablename.MYD’ not found (Errcode: 24) when using LOCK TABLES ~# It can be…
-
Installing Oracle RDBMS Server
Oracle is a very popular database. Particularly for enterprise customers running on dedicated servers with lots of CPU and fast RAID setups. This tutorial will guide you to install Oracle database server on CentOS Linux distro. Hopefully the steps are simple enough that even a technically minded non-DBA can get the database installed. Oracle RDBMS…
-
Emailed backup of a database via cron – Attaching files via command line
-
Mysql Master/Master Replication & File sync for quick easy scaling or load balance