zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

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

mysqlcentos7配置 快速 相关 复制 替换 准备
2023-09-11 14:21:28 时间

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

修改机器配置:

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 

 

其他稍后待续...