关闭

Oracle 11g RAC启动与关闭记录

Deadly 提交于 2019-12-07 08:28:11
Startup 1. Ensure that you are logged in as the root Linux/ UNIX user. If you are not connected as root OS user, you must switch to the oracle OS user su - root 2. Start (startup) the Oracle cluster stack su - root cd $CRS_HOME/bin # ./crsctl start crs (must be run on each node) 3. Startup (start) all Oracle ASM instances on all nodes. (If you are not using the ASM you must skip this step.) su - oracle (you must be logged as oracle) To shut down an Oracle ASM instance, enter the following command, where node_name is the name of the node where the Oracle ASM instance is running: $ oracle_home

VBS脚本

邮差的信 提交于 2019-12-06 06:57:34
自从安装了Oracle数据库后,我电脑的运行速度满了很多。为此我想了一个办法,让我在不需要使用Oracle数据库的时候,可以轻松地关掉Oracle相关服务。 我安装的Oracle版本为Oracle11g,与Oracle有关的服务如下图所示: 这些服务包括: 1、Oracle ORCL VSS Writer Service(手动启动) 2、OracleDBConsoleorcl(自动启动) 3、OracleJobSchedulerORCL(禁用) 4、OracleMTSRecoveryService(自动启动) 5、OracleOraDb11g_home1ClrAgent(手动) 6、OracleOraDb11g_home1TNSListener(自动启动) 7、OracleServiceORCL(自动启动) 其中,需要我们用脚本关闭的服务,都是开机自启动且当前已启动的服务,一共有四个(2、4、6、7)。 我们可以使用WQL查出这四个服务,逐一关闭即可。 VBS脚本(StopServiceLikeOracle.vbs)如下: Set ServiceSet = GetObject("winmgmts:"). _ ExecQuery("select * from Win32_Service where name like 'Oracle%' and started = true")

tomcat shutdown.sh无法关闭问题

[亡魂溺海] 提交于 2019-12-03 16:09:06
shutdown-force.sh解决tomcat无法正常关闭需要手动kill问题。 在tomcat/bin下创建 shutdown-force.sh set fileformat=unix #!/bin/bash #force shutdown tomcat,copy this sh file to tomcat/bin dir path=$(dirname $0) echo "exec $path/shutdown.sh" $path/shutdown.sh sleep 3s #kill -9 pid echo "Kill tomcat! pid:" `ps -ef|grep $path|grep java|awk '{print $2}'` ps -ef|grep $path|grep java|awk '{print $2}'|xargs kill -9 #success msg echo "shutdown success" ps -ef|grep $path|grep java|awk '{print $2}' 来源: oschina 链接: https://my.oschina.net/u/1241069/blog/672902

Linux系统 防火墙检查、开启、关闭

做~自己de王妃 提交于 2019-11-28 21:39:11
Linux系统 防火墙检查、开启、关闭 ping测试必须在关闭Linux防火墙的条件下进行,否则可能失败。 查看防火墙信息: #/etc/init.d/iptables status 防火墙重启: #/etc/init.d/iptables restart 关闭开启防火墙服务(不建议永久关闭防火墙): 永久生效:chkconfig iptables on/off(重启生效) 即时生效:service iptables start/stop(重启失效) 永久关闭防火墙也可以这样: #chkconfig --level 35 iptables off #chkconfig -level 35 iptables off 也可以直接修改 /etc/sysconfig/iptables 添加一条 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT 来源: oschina 链接: https://my.oschina.net/u/616377/blog/79209

模态窗口的关闭确认和事件执行

爱⌒轻易说出口 提交于 2019-11-28 20:19:46
最近在做一个测评系统,涉及到防止用户半途有意或者无意退出测评,需要在关闭子窗口时确认关闭操作,并在确认后让父窗口执行跳转的事件。这些功能可以通过window的onunload和onbeforeunload实现。 onunload,onbeforeunload都是在刷新或关闭时调用,可以在<script>脚本中通过window.onunload来指定或者在<body>里指定。区别在于onbeforeunload在onunload之前执行,它还可以阻止onunload的执行。 onbeforeunload也是在页面刷新或关闭时调用,onbeforeunload是正要去服务器读取新的页面时调用,此时还没开始读取;而onunload则已经从服务器上读到了需要加载的新的页面,在即将替换掉当前页面时调用。onunload是无法阻止页面的更新和关闭的。而 onbeforeunload 可以做到。 <script type="text/javascript"> <!-- window.onbeforeunload = onbeforeunload_handler; function onbeforeunload_handler(){ var warning="确认退出?"; return warning; } window.onunload = onunload_handler; function