Connection test failed. Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in conn...
分类:
Web程序 时间:
2014-06-25 23:48:58
阅读次数:
387
今天在weblogic发布应用包时,包内含有中文的路径或者文件名,发布时报错提示乱码,挂不上包!
通过命令 echo $LANG 发现输出 zh_CN.UTF-8
我们需要修改LANG的环境变量才可以解决这个问题!
a.若要临时解决,可变更当前环境变量,执行 export LANG=zh_CN.GB18030,但本次打开的终端关闭后环境变量就会变回系统默认
b.若有永...
分类:
Web程序 时间:
2014-06-25 08:11:50
阅读次数:
255
boot.properties可以使管理服务器启动时不需要提供密码在所有生产环境中都被使用,随着bea被收购,及Weblogic的发展,其位置发生了改变。boot.properties内容为boot.properties##############################username={your_username}password={your_password}###############..
分类:
Web程序 时间:
2014-06-25 06:16:00
阅读次数:
396
yum是RPM的前端工具,通过yum命令可以帮我们自动解决安装rpm包之间的依赖关系。下面是搭建本地yum仓库的步骤:1、挂载光盘(光盘为CentOS-6.5-x86_64-bin-DVD2.iso)mount/dev/cdrom1/medials一下/media这个目录,可以看到以下内容2、创建本地文件夹,将Packages下的rpm包全部..
分类:
系统相关 时间:
2014-06-24 16:18:22
阅读次数:
304
在linux中运行命令行时,会输出一些日志信息,特别典型的是启用WebLogic命令时,输出一些信息,当启用demon模式运行时,又想收集这些信息咋办?
解决的办法就是使用输出重定向,如下面的命令:
nohup ./startWebLogic.sh > app.log 2>&1 &
这是什么意思呢?
其中app.log是保存输出的文件名称;
2>&1 表示不仅命令行正...
分类:
其他好文 时间:
2014-06-22 18:52:55
阅读次数:
459
一、LINUX基础教程1.老男孩系列免费视频:1)linux高薪入门实战视频教程(第二部)老男孩linux教程http://edu.51cto.com/course/course_id-1035-page-1.html2)跟着老男孩从0开始一步步实战深入学习linux运维(三)http://edu.51cto.com/lesson/id-11909.html
分类:
系统相关 时间:
2014-06-22 10:08:17
阅读次数:
294
The Java Authentication and Authorization Service (JAAS) is a standard extension to the security in the J2SE Development Kit 5.0. JAAS provides the ab...
分类:
Web程序 时间:
2014-06-21 13:45:27
阅读次数:
310
The following topics are covered in this section:JAAS and WebLogic ServerJAAS Authentication Development EnvironmentWriting a Client Application Using...
分类:
编程语言 时间:
2014-06-21 11:17:39
阅读次数:
198
1、在/home/bea/startBeaAll目录内创建一个startBeaAll.sh文件,加入如下内容(把相应目录与命令修改即可,红字部分为修改地方):#!/bin/shecho "======weblogic start begin========"echo "======managerSe...
分类:
Web程序 时间:
2014-06-20 19:03:38
阅读次数:
845
linux命令无效-bash:ls:commandnotfound一次重启后开机,基本所有的命令都不可用,只有少数的命令可用[root@centos-1~]#ll-bash:ls:commandnotfound[root@centos-1~]#pwd/root[root@centos-1~]#shutdown-rnow-bash:shutdown:commandnotfound[root@centos-1~]#export$PATH-bash:..
分类:
系统相关 时间:
2014-06-17 17:45:16
阅读次数:
368