|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
业界普遍的声音认为:“MySQL是一个可靠的数据库系统,MySQL学习教程无论是在嵌入式或大型群集系统的部署中,还是在基于Web的应用程序领域。oracle|防火墙
最近因为事情必要,在WindowsXP平台上安装了Oracle9i数据库作为测试之用,统统一般。但当客户机毗连服务器时却老是超时,我起首想到了防火墙,当我翻开1521端口时,毗连操纵仍旧失利。我又嫌疑收集有成绩,用telnetserver_ip:1521实验,毗连被承受,申明1521端口已被翻开。
没有举措,查询Oracle材料后才分明,networklistener只起一其中介感化,当客户毗连它时,它依据设置寻觅到响应的数据库实例历程,然后spawned一个新的数据库毗连,这个毗连端口由networklistener传送给客户机,今后客户机就不再和打交道了,即便listener中断了事情。这个新的毗连端口是不成预知的,因此会被防火墙制止。
WindowsSocket2标准有一个新的特征,就是SharedSocket,所谓共享套接字是指一个历程共享另外一个历程的套接字(详见MSDN相干参考)。假如让networklistener与数据库服务历程共享套接字,那末毗连端口就不会变更。
怎样设置SharedSocket?
在注册表:HKEY_LOCAL_MACHINEOFTWAREORACLEHOME0上新建一个字符串值:USE_SHARED_SOCKET=true。假如安装了多个目次,则每一个相似的目次都要设置:HKEY_LOCAL_MACHINEOFTWAREORACLEHOMEx(x目次编号)
设置后请求从头启动实例(只重启listener发明没无效果)
援用材料:
http://www.computer-book-authors.org/aud_450.htm
典范成绩:
http://www.lazydba.com/oracle/0__37815.html
whenaclientconnectstoalisteneritusesport1521attheclientmachine.thelistenerthenreturnstotheclientthruadifferentport.The1521portisclosedandthedbconnectionusesthenewportforcommunicatingwiththeclient.iwantthelistenertoreturntotheclientusingport1521,how?
metalinksaysusetheuse_shared_socketparameter,butitsstillnotworking.isettheparametertotrueinthesysenvandintheregistry.
....
Oracle原文:
USE_SHARED_SOCKET
YoucansettheUSE_SHARED_SOCKETparametertoTRUEtoenabletheuseofsharedsockets.IfthisparameterissettoTRUE,thenetworklistenerpassesthesocketdescriptorforclientconnectionstothedatabasethread.Asaresult,theclientdoesnotneedtoestablishanewconnectiontothedatabasethreadanddatabaseconnectiontimeimproves.Also,alldatabaseconnectionssharetheportnumberusedbythenetworklistener,whichcanbeusefulifyouaresettingupthird-partyproxyservers.
OnWindowsNT4.0ServicePack3orearlier,enablingthisoptionprecludesbringingthenetworklistenerupordowninacasewhereadatabaseconnectionspawnedbythenetworklistenerisactive.Therefore,youmay
needtoshutdownallofthedatabasesservicedbyanetworklistenerbeforeyoucanbringdownandrestartanetworklistener.ThisresultsfromthewaysharedsocketshavebeenimplementedinWINSOCK2.WINSOCK2doesnot
allowareliablethreadtoanetworklisteneronanyportonwhichotherconnectionsarealsoactive.ThisisnotanissueonWindowsNT4.0ServicePack4orlater.OraclerecommendsthatyouupgradetoWindowsNT4.0ServicePack4ifyouintendtosetthisparameter.
ThisparameteronlyworksindedicatedservermodeinaTCP/IPenvironment.Ifthisparameterisset,youcannotusethe8.1.5listenertospawnOracle7.xdatabases.TospawnanOracle8.0.xdatabasefroman8.1.5listener
==============
首先我们要知道,或许有一项技术存在很多理由让我们可以选择使用MySQL学习教程,但是让我们不使用它往往只要有一个理由就足够了。 |
|