weblogic和was的巡检报告模板
摘要:weblogic巡检报告模板 https://max.book118.com/html/2017/0710/121553357.shtm 用jrockit How to tell Our WebLogic to use JRockit JVM ? Step-1). Set the JAVA_HOME
阅读全文
aix装python
摘要:网址是:http://www-03.ibm.com/systems/power/software/aix/linux/toolbox/alpha.html 在AIX下安装python Python是个好东西。 去IBM网站下载for AIX的最新版:http://www-1.ibm.com/serv
阅读全文
mq for aix 清理步骤
摘要:删除所有相关进程smit remove 删除mq删除mqm用户和用户组如果unmount /cdrom 卸载不掉的话使用 fuser -xcu /cdrom rm /var/mqm
阅读全文
linux命令技巧
摘要:修改linux终端颜色显示 sed -i '/PS1=/d' ~/.bash_profile; echo "PS1='\e[1;33m[\u@\e[1;31m\h:\e[1;32m\w]\e[0m\$ '" >>~/.bash_profile; . ~/.bash_profile 更新yum源 yu
阅读全文
用nodejs搭建BS环境
摘要:var http = require('http'); http.createServer(function (req, res) {res.writeHead(200, {'Content-Type': 'text/plain'});res.end('Hello World\n'); }).listen(8124, "127.0.0.1"); console.log('Server run...
阅读全文
python获取当前环境的编码
摘要:# coding:gbk import sys import locale def p(f): print '%s.%s(): %s' % (f.__module__, f.__name__, f()) # 返回当前系统所使用的默认字符编码 p(sys.getdefaultencoding) # 返回用于转换Unicode文件名至系统文件名所使用的编码 p(sys.get...
阅读全文
suse系统开启ssh方法
摘要:1、防火墙放开ssh服务 打开/etc/sysconfig/SuSEfirewall2 文件,FW_SERVICES_EXT_TCP="ssh"可以定义开放ssh的服务
阅读全文