Инструменты пользователя

Инструменты сайта


linux:mysql:multiple
Warning: Undefined array key -1 in /home/virtwww/w_linko22-ru_c0d3353b/http/inc/html.php on line 1458

Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Предыдущая версия справа и слева Предыдущая версия
Следующая версия
Предыдущая версия
linux:mysql:multiple [2011/12/09 10:54]
linko22@gmail.com
linux:mysql:multiple [2011/12/27 16:13] (текущий)
linko22@gmail.com
Строка 4: Строка 4:
  
 <code cli> <code cli>
-mkdir /var/lib/mysql2/mysql+mkdir -p /var/lib/mysql2/mysql
 mkdir /var/lib/mysql2/mysql/data mkdir /var/lib/mysql2/mysql/data
 mkdir /var/lib/mysql2/mysql/log mkdir /var/lib/mysql2/mysql/log
Строка 13: Строка 13:
 </code> </code>
  
-2. Создаем новый минимальный конфигурационный файл для нашего нового сервера **/etc/my.server2.cnf**+2. Создаем новый минимальный конфигурационный файл для нашего нового сервера **/etc/my2.cnf**
  
-<file bash my.server2.cnf>+<file bash my2.cnf>
  
 [mysqld] [mysqld]
Строка 41: Строка 41:
 # description:  MySQL database server 2nd instance. # description:  MySQL database server 2nd instance.
 # processname: mysqld # processname: mysqld
-# config: /etc/my.server2.cnf +# config: /etc/my2.cnf 
-# pidfile: /mysql2/mysql/run/mysqld.pid+# pidfile: /var/lib/mysql2/mysql/run/mysqld.pid
 # Source function library. # Source function library.
 . /etc/rc.d/init.d/functions . /etc/rc.d/init.d/functions
Строка 60: Строка 60:
         fi         fi
 } }
-get_mysql_option mysqld datadir "/mysql2/mysql/data" +get_mysql_option mysqld datadir "/var/lib/mysql2/mysql/data" 
-datadir="/mysql2/mysql/data"+datadir="/var/lib/mysql2/mysql/data"
 get_mysql_option mysqld socket "$datadir/mysql.sock" get_mysql_option mysqld socket "$datadir/mysql.sock"
 socketfile="$datadir/mysql.sock" socketfile="$datadir/mysql.sock"
-get_mysql_option mysqld_safe log-error "/mysql2/mysql/log/mysqld.log" +get_mysql_option mysqld_safe log-error "/var/lib/mysql2/mysql/log/mysqld.log" 
-errlogfile="/mysql2/mysql/log/mysqld.log" +errlogfile="/var/lib/mysql2/mysql/log/mysqld.log" 
-get_mysql_option mysqld_safe pid-file "/mysql2/mysql/run/mysqld.pid" +get_mysql_option mysqld_safe pid-file "/var/lib/mysql2/mysql/run/mysqld.pid" 
-mypidfile="/mysql2/mysql/run/mysqld.pid"+mypidfile="/var/lib/mysql2/mysql/run/mysqld.pid"
 start(){ start(){
         touch "$errlogfile"         touch "$errlogfile"
Строка 86: Строка 86:
         # In many cases mysqld_safe would arrive at the same conclusions anyway         # In many cases mysqld_safe would arrive at the same conclusions anyway
         # but we need to be sure.         # but we need to be sure.
-        /usr/bin/mysqld_safe --defaults-file=/etc/my.server2.cnf --datadir="$datadir" --socket="$socketfile" \+        /usr/bin/mysqld_safe --defaults-file=/etc/my2.cnf --datadir="$datadir" --socket="$socketfile" \
                 --log-error="$errlogfile" --pid-file="$mypidfile" \                 --log-error="$errlogfile" --pid-file="$mypidfile" \
                 >/dev/null 2>&1 &                 >/dev/null 2>&1 &
Строка 111: Строка 111:
             action $"Starting $prog: " /bin/false             action $"Starting $prog: " /bin/false
         fi         fi
-        [ $ret -eq 0 ] && touch /mysql2/mysql/lock/mysqld+        [ $ret -eq 0 ] && touch /var/lib/mysql2/mysql/lock/mysqld
         return $ret         return $ret
 } }
Строка 131: Строка 131:
                     action $"Stopping $prog: " /bin/false                     action $"Stopping $prog: " /bin/false
                 else                 else
-                    rm -f /mysql2/mysql/lock/mysqld+                    rm -f /var/lib/mysql2/mysql/lock/mysqld
                     rm -f "$socketfile"                     rm -f "$socketfile"
                     action $"Stopping $prog: " /bin/true                     action $"Stopping $prog: " /bin/true
Строка 149: Строка 149:
 } }
 condrestart(){ condrestart(){
-    [ -e /mysql2/mysql/lock/mysqld ] && restart || :+    [ -e /var/lib/mysql2/mysql/lock/mysqld ] && restart || :
 } }
 # See how we were called. # See how we were called.
Строка 174: Строка 174:
 exit $? exit $?
 </file> </file>
 +
 +4. Включаем автозапуск и стартуем
 +
 +<code cli>
 +chmod +x /etc/init.d/mysqld2
 +chkconfig mysqld2 on
 +service mysqld2 start
 +</code>
 +
 +5. Меняем пароль
 +
 +<code cli>
 +mysqladmin -P 3307 --protocol=tcp -u root password 'NEWPASSWORD'
 +</code>
 +
 +6. Подключаемся и смотрим
 +
 +<code cli>
 +# mysql -P 3307 --protocol=tcp -uroot -p
 +Enter password:
 +Welcome to the MySQL monitor.  Commands end with ; or \g.
 +Your MySQL connection id is 11
 +Server version: 5.5.19-log Source distribution
 +Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 +mysql> show databases;
 ++--------------------+
 +| Database           |
 ++--------------------+
 +| information_schema |
 +| mysql              |
 +| test               |
 ++--------------------+
 +3 rows in set (0.00 sec)
 +mysql>
 +</code>
 +
 +7. Проверяеем запущеные демоны
 +
 +<code cli>
 +
 +# ps -ax | grep mysql
 +Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
 + 2996 pts/1    S+     0:00 grep --color=auto mysql
 +15491 ?        S      0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql --open-files-limit=65535
 +16096 ?        Sl   5422:02 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/log/mysqld.log --open-files-limit=65535 --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
 +19765 ?        S      0:00 /bin/sh /usr/bin/mysqld_safe --defaults-file=/etc/my2.cnf --datadir=/var/lib/mysql2/mysql/data --socket=/var/lib/mysql2/mysql/data/mysql.sock --log-error=/var/lib/mysql2/mysql/log/mysqld.log --pid-file=/var/lib/mysql2/mysql/run/mysqld.pid
 +20343 ?        Sl    15:04 /usr/libexec/mysqld --defaults-file=/etc/my2.cnf --basedir=/usr --datadir=/var/lib/mysql2/mysql/data --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/lib/mysql2/mysql/log/mysqld.log --pid-file=/var/lib/mysql2/mysql/run/mysqld.pid --socket=/var/lib/mysql2/mysql/data/mysql.sock --port=3307
 +</code>
 +
 +8. По мотивам статьи [[http://unixmen.com/linux-tutorials/1863--multiple-mysql-instance-on-fedoracentosredhatscientific-linux]]
linux/mysql/multiple.1323413696.txt.gz · Последнее изменение: 2011/12/09 10:54 — linko22@gmail.com