快速准备(复制替换)一套新测试环境,CentOS7 MySQL相关配置

拿到一个新环境,需要找相关配置,我有一个办法,相对能比较快速地复制一套环境出来。

修改机器配置:

virsh 相关几条命令,已完成,后续我再整理补充…

 

修改服务配置:

cd /mnt/app/xxjob/WEB-INF/classes
sed -i s/192.168.0.202/192.168.0.212/g generator.properties
sed -i s/192.168.0.202/192.168.0.212/g application.yml
sed -i s/192.168.0.202/192.168.0.212/g jdbc.properties
sed -i s/192.168.0.202/192.168.0.212/g application.properties
sed -i s/192.168.0.202/192.168.0.212/g  xxl-job-admin.properties
cat /mnt/app/xxjob/WEB-INF/classes/* | grep 192.168.0.202

 

修改MySQ配置:

[root@localhost etc]# which mysql
/usr/bin/mysql
[root@localhost etc]# /usr/bin/mysql --verbose --help | grep -A 1 Default options
Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf 

 

其他稍后待续…