向领导请教问题怎么写有关security server的问题

关于SQL SERVER的一些安全问题_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
评价文档:
关于SQL SERVER的一些安全问题
上传于||文档简介
&&计​算​机
大小:13.76KB
登录百度文库,专享文档复制特权,财富值每天免费拿!
你可能喜欢> weblogic10使用过程中遇到的有关问题及解决方法
weblogic10使用过程中遇到的有关问题及解决方法
lijingchaoshen & &
发布时间: & &
浏览:295 & &
回复:0 & &
悬赏:0.0希赛币
weblogic10使用过程中遇到的问题及解决办法
  在ManagedServer上部署应用,报错如下:
  java.lang.Exception: [DeploymentService:290049]Deploy failed for id '1,226,729,943,484' since no targets are reachable.
  经查,原来是以weblogic用户启动的AdminServer,而以root用户启动的ManagedServer,在Admin的控制台部署应用时AdminServer没有权限操作ManagedServer,改成以weblogic用户重新启动ManagedServer,问题解决。
  =============================================
  ManagedServer启动报错:
  & 下午04时06分08秒 GMT+08:00& &Critical& &Security& &BEA-090402& &Authentication denied: Boo The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.&
& 下午04时06分08秒 GMT+08:00& &Critical& &WebLogicServer& &BEA-000386& &Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication denied: Boo The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
weblogic.security.SecurityInitializationException: Authentication denied: Boo The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
at weblogic.monSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
at weblogic.monSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
  经查,原来是启动时把Admin服务器的地址写成了: 127.0.0.1,而在config.xml定义的AdminServer的监听地址是: 145.24.16.158。启动命令如下:
  ./bin/startManagedWebLogic.sh pese
  改成:
  ./bin/startManagedWebLogic.sh pese
  问题解决。
  ==========================================
  ManagedServer启动时报错:
  ####& 下午02时16分53秒 GMT+08:00& &Critical& &WebLogicServer& &xmptt2& &pese& &main& $$ $<$ $<$ &7& &B
EA-000386& &Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication for user weblogic den
weblogic.security.SecurityInitializationException: Authentication for user weblogic denied
  解决办法:
  This error would occur incase you are having
security realm setup on your weblogic server.
Go to Weblogic Admin console
Security Realms&myrealm & Providers &Adjudication&
DefaultAdjudicator &Provider Specific
Uncheck Require Unanimous Permit
Restart the server
  ======================================================
本问题标题:
本问题地址:
温馨提示:本问题已经关闭,不能解答。
暂无合适的专家
&&&&&&&&&&&&&&&
希赛网 版权所有 & &&4733人阅读
ARCGIS应用相关(26)
环境:arcgis 10 server,map,catalog,flex2.5,xp系统上的IIS6.0
问题症状:catalog建立发布好服务后,用flex viewer调用服务显示提示提示错误,错误信息为
faultCode=&Channel.Security.Error&
&&&&&&&&&&&&&&& Security error accessing url
还有其他一些提示信息,忘了保存了。
解决办法:
在server根目录建立一个文件crossdomain.xml,内容为
&?xml version=&1.0&?&
&cross-domain-policy&
&&&&&allow-access-from domain=&*& /&
&/cross-domain-policy&
这样既可解决!
参考信息如下:&&
&最近在用Flex做一个项目,在本机调试一切正常,传到服务器上之后出现如下错误:
&&&&&&&&[RPC Fault faultString=&Security error accessing url&
&&&&&&&&faultCode=&Channel.Security.Error&
&&&&&&&&faultDetail=&Unable to load WSDL.
&&&&查明是swf文件跨域访问安全机制的问题,最简单的解决办法就是在所调用的webservice服务器的根目录上加上一个策略文件,默认名为crossdomain.xml内容如下:
&?xml version=&1.0&?&
&cross-domain-policy&
&&&&&allow-access-from domain=&*& /&
&/cross-domain-policy&
&&&& 同样也可以在代码中调用
&&flash.system.Security.loadPolicyFile();方法来加载策略文件。加上策略文件之后,以为这下应该没有可以了,但不幸的是又出现新的错误,这次错误信息有所不同,但同样和跨域访问有关系,错误如下:
&&&&&&&&[RPC Fault faultString=&Security error accessing url&
&&&&&&&&faultCode=&Channel.Security.Error&
&&&&&&&&faultDetail=&Destination: DefaultHTTP&]
&&&&最后发现是flash播放器版本更新成9.0.124之后,对安全方面有很多的改变,所以造成了这种错误的出现,解决办法也很简单,在原来的crossdomain.xml文件中加入以下代码即可
&&&& &allow-http-request-headers-from domain=&*& headers=&*&/&
&&&&关于flash player 9.0.124版本的安全方面的改变可以以下参考adobe的文档
&&&&date.html
&&&&&sliceId=2
完整代码:
&?xml version=&1.0&?&
&!DOCTYPE cross-domain-policy SYSTEM &&&
&cross-domain-policy&
&&&&&allow-access-from domain=&*& /&
&&&&&allow-http-request-headers-from domain=&*& headers=&*&/&
&/cross-domain-policy&
C:\inetpub\wwwroot
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:298415次
积分:4039
积分:4039
排名:第4715名
原创:117篇
转载:56篇
评论:72条
(1)(61)(1)(2)(1)(1)(1)(4)(3)(3)(5)(3)(6)(19)(11)(33)(17)(1)

我要回帖

更多关于 向外国教授请教问题 的文章

 

随机推荐