您的位置:首页 > 运维架构 > Linux

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

2018-08-22 11:33 986 查看

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

修改机器配置:

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

虚拟化相关,参考:https://www.cnblogs.com/haochuang/p/9540812.html

 

修改服务配置:

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

 

修改MySQL配置:

[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

 

其他稍后待续...

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: