linux查看时间
Linux认证下如何查看系统启动时间和运行时间,第一数字即是系统已运行的时间5113396.94秒,运用系统工具date即可算出系统启动时间。
Linux下如何查看系统启动时间和运行时间
1.uptime命令
uptime
输出:16:11:40up59days,4:21,2users,loadaverage:0.00,0.01,0.00
2.查看/proc/uptime文件计算系统启动时间
cat/proc/uptime
输出:5113396.94575949.85
//第一数字即是系统已运行的时间5113396.94秒,运用系统工具date即可算出系统启动时间
//代码:全选
date-d"$(awk-F.'{print$1}'/proc/uptime)secondago"+"%Y-%m-%d%H:%M:%S"
输出:2008-11-0911:50:31
3.查看/proc/uptime文件计算系统运行时间
代码:全选
cat/proc/uptime|awk-F.'{run_days=$1/86400;run_hour=($1%86400)/3600;run_minute=($1%3600)/60;run_second=$1%60;printf("系统已运行:%d天%d时%d分%d秒",run_days,run_hour,run_minute,run_second)}'
输出:系统已运行:59天4时13分9秒
oracle重启
$su-oracle
$lsnrctlstop
$sqlplus"/assysdba"
SQL>shutdownimmediate;
SQL>quit
$lsnrctlstart
$sqlplus/nolog
SQL>connect/assysdba
SQL>startup;
Oracle最大连接数的处理
selectcount(*)fromv$process
selectvaluefromv$parameterwherename='processes'
---altersystemsetprocesses=1500scope=spfile;
SELECTosuser,a.username,cpu_time/executions/1000000||'s',sql_fulltext,machine
fromv$sessiona,v$sqlareab
wherea.sql_address=b.addressorderbycpu_time/executionsdesc;
http://blog.csdn.net/songyanjun2011/article/details/7257351
weblogic地址
http://hi.baidu.com/yitao/blog/item/544480cb17a606ff53664f79.html包挂破解
报404错误
添加weblogic.xml文件
<?xmlversion='1.0'encoding='UTF-8'standalone='no'?>
<weblogic-web-appxmlns="http://www.bea.com/ns/weblogic/90"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<context-root>/test</context-root>
</weblogic-web-app>
转:
我们的应用在tomcat上一直运行正常,移植到weblogic9上,同样的应用会因为获取不到数据库连接的错误而崩溃,经同事研究发现原因是weblogic9默认配置提供的可用连接数太少(4)所致,可是weblogic9控制台又没有提供修改链接数的功能,经多方请教,最后找到解决方法如下:
1、修改weblogicdomain的config.xml文件,在对应位置加入红色标注的两行内容:
<server>
<name>admserver</name>
<self-tuning-thread-pool-size-min>5</self-tuning-thread-pool-size-min>
<self-tuning-thread-pool-size-max>15</self-tuning-thread-pool-size-max>
...
</server>
2、在startweblogic.cmd脚本中加入一下java启动参数:
-Dweblogic.configuration.schemaValidationEnabled=false