码迷,mamicode.com
首页 > 数据库 > 详细

mariadb克隆

时间:2016-01-29 21:21:41      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

oracle有克隆安装,其实mysql/mariadb类似,只需简单几步就可以直接在异机直接启动.
环境:
node01安装完成的mariadb;
node02一个新机器
现在将node01克隆到node02机器


--1.node02准备环境

#yum remove mysql-libs

#yum -y install cmake  gcc gcc-c++  autoconf automake zlib*  libxml* ncurses ncurses-devel libtool-ltdl-devel* make  bison bison-devel libaio 

#groupadd mysql && useradd -g mysql  mysql -s /sbin/nologin && echo 'mysql01!@#' |passwd --stdin mysql

#vi + /etc/security/limits.conf

mysql            soft    nproc   2047
mysql            hard    nproc   16384
mysql            soft    nofile  1024
mysql            hard    nofile  65536



--2.node01正常关闭数据库

# mysqlshutdownv.sh 
mysql port is 33107
 close mysql service
--------------------------------------------
mysql shutdown....Wait a minute...
    ****MYSQL SUCESS CLOSE**** 


---3.node01打包

tar czvf mysql.tar.gz /data/



--4.传输到node02


# scp -r -p -P 22 /root/mysql.tar.gz  root@192.168.50.160:/backup
The authenticity of host '192.168.50.160 (192.168.50.160)' can't be established.
RSA key fingerprint is 74:5d:47:c0:f8:cf:e7:bb:8c:76:94:4f:0d:6b:ea:c8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.50.160' (RSA) to the list of known hosts.
root@192.168.50.160's password: 
mysql.tar.gz                                                                                        100%  131MB  43.6MB/s   00:03   

--5.解压和修改权限


#cd /backup

# tar zxvf mysql.tar.gz -C /data/

# ls /data/
data

--移动目录到上一层
# cd /data/data/ && mv mysql/  ../ && mv ocpyang/  ../ && ls /data/data/ &&  ls /data/mysql/ &&  ls /data/ocpyang

# rm -rf /data/data

#chown -R mysql /data/mysql && chgrp -R mysql /data/mysql


--6.链接必要文件

##链接文件
#ln -fs  /data/mysql/my.cnf  /etc/my.cnf; ll /etc/my.cnf 

#cd /data/mysql/&& cp support-files/mysql.server /etc/init.d/mysql &&  chkconfig mysql on


--7.修改my.cnf文件
#vi /etc/my.cnf

:%s/node01/node02/g




--8.修改环境变量

# vi ~/.bash_profile

#ocpyang set
alias date='date "+%Y-%m-%d %H:%M:%S" '
alias  mysql="mysql -hlocalhost -uroot -ppassword --auto-rehash --prompt=\"\u@node02 \R:\m:\s>\" "
alias  errorlog="cat  /data/mysql/mysql_logs/error_log/error.log"
alias  mycnf="cd /data/mysql"
export PATH=/data/mysql/scripts:$PATH

#source ~/.bash_profile

#chmod 755  /data/ocpyang/*
#echo "export PATH=/data/ocpyang:\$PATH">>~/.bash_profile

#source ~/.bash_profile

--9.启动mysql


#chown -R mysql /data/mysql; chgrp -R mysql /data/mysql


#/data/mysql/bin/mysqld_safe --datadir='/data/mysql/data' &


# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 5
Server version: 10.1.10-MariaDB-log Source distribution

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

root@node02 11:59:21>show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| jinri              |
| mysql              |
| performance_schema |
| test               |
+--------------------+
5 rows in set (0.03 sec)

mariadb克隆

标签:

原文地址:http://blog.csdn.net/yangzhawen/article/details/50606391

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!