Create the following files to start and stop R12. application tier. Change the apps and weblogic passwords appropriately. start_R12.sh ============ /d01/oracle/VIS/fs1/inst/apps/VIS_erptest/admin/scripts/adstrtal.sh apps/apps <<EOF weblogic1 EOF ———…
DB: 5.5.14 OS:CentOS 6.3 在MySQL多实例中,一个一个启动灰常麻烦,因此写个简单的启动和关闭脚本 启动脚本:start.sh #!/bin/bash for port in {3390..3396} do (/export/servers/mysql/bin/mysqld_safe --defaults-file=/export/servers/mysql/etc/my$port.cnf ) & done 关闭脚本:stop.sh #!/bin/bash for po…