Master-Slave MySQL-5.1 Replication

Environment: RHEL: 5.3 MySQL: 5.1.54 Master : 1. MySQL user and group [codesyntax lang="bash"] $ groupadd mysql $ useradd -g mysql mysql [/codesyntax] 2. Download and install MySQL [codesyntax lang="b… Continue reading
Posted in MySQL, RHEL| Tagged , | 2 Comments

Compile Mysql Extension for PHP

1. PHP Source : /home/kim/php-5.3.3 Path : /usr/local/php 2. Compile Mysql Extension [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ cd /home/kim/php-5.3.3/ext/mysql/ $ /usr/local/… Continue reading
Posted in PHP, Ubuntu| Tagged , , | Leave a comment

Shell – MySQL Query

[codesyntax lang="bash" lines="no" container="pre" tab_width="4"] #!/bin/bash # configs host='localhost'; user='kim'; pass='xxxxxx'; database='test_database'; # select from database query=`mysql -h$ho… Continue reading
Posted in Linux| Tagged , | Leave a comment