BEQLSNR on VMS

I would really appreciate any information on the low-level detail when the BEQLSNR process starts oracle.exe (when lsnr is running in "no-prespawned server" mode). On Unix, tnslsnr forks and execs oracle, which inherits an open read pipe and an open write pipe as a child of tnslsnr - oracle uses these pipes to talk to tnslsnr. On vms I'm guessing that the same thing happens (implemented through mailboxes rather than pipes?).
I am writing an application server that I want to serve through the lsnr, and my app can't see the open file descriptors in VMS (it sees them and communicates successfully w/ tnslsnr in Unix).
Thanks,
Jeremy Hickerson
[email protected]

zuku wrote:
... VMS 8.3
where can i get the jvmGoogle ([vms 8.3 java|http://www.google.com/search?q=vms+8.3+java]) suggests [http://h18012.www1.hp.com/java/alpha/].

Similar Messages

  • TNSLISTENER VS. BEQLISTENER ON VMS

    제품 : ORACLE SERVER
    작성날짜 : 1998-11-29
    * TNSListener
    TNS Listener의 기본 업무는 클라이언트의 연결 요구를 받아들여 MTS의 경우는
    해당 서비스 프로토콜의 디스패처에게 연결을 넘겨주고 데디케이티드 서버
    방식의 경우는 Prespawned 또는 만들어질 서버 프로세스에게 연결을 넘겨주는
    역할이다. TNS Listener는 복수 개의 인스턴스에대해 서비스를 할 수 있으며,
    V7.3에서 새로 생긴 Beq프로세스들은 SQL*Net 을 통하지 않으며, 이전 버젼에서
    사용되던 Single-Task방식을 대체하였다.
    * LSNRCTL
    LSNRCTL 명령은 ORA_NETCONFIG:LSNRCTL.COM을 수행하게 되는데, 이것은 ORA_NETCONFIG:LSNRCTL.EXE파일을 수행하는 Shell역할을 하게 된다. LSNRCTL
    명령은 반드시 ORACLE 계정에서 수행하여야 하며, MAXSYSGROUP값 이상의 계정
    에서 수행되어야 한다.
    * Listener가 갖고 있어야 할 시스템 권한
    1. CMKRNL : Listener가 생성한 서버 프로세스에게 이 권한이 이양됨.
    2. DETACH : Detached 프로세스를 생성할 수 있는 권한.
    3. LOG_IO : I/O 함수들을 수행시킬 수 있는 권한
    4. NETMBX : DECnet을 사용할 수 있는 권한.
    5. TMPMBX : Temporary MailBox를 만들수 있는 권한.
    6. PRMMBX : 클라이언트의 요청을 들을 수 있는 Permanent한 MailBox를 만들
    수 있는 권한
    7. SYSLCK : 시스템 자원에 대한 락을 걸 수 있는 권한.
    8. SYSNAM : SYSTEM 로지컬 테이블과 명을 만들 수 있는 권한.
    9. WORLD : 디스패처나 공유 서버 프로세스들에 대한 정보와 통제를 할 수
    있는 권한.
    * Listener 프로세스의 쿼타
    리스너의 쿼타와 리스너가 생성하는 프로세스들에 대한 쿼타(MTS사용시의 공유
    서버 프로세스는 아님)를 조절할 수 있는 방법은 로지컬 명을 이용하는 것이다.
    ORA_LSNR_<쿼타 명> : 쿼타 명에 들어갈 수 있는 것들
    1. ASTLM
    2. BIOLM
    3. BYTLM
    4. CPULM
    5. DIOLM
    6. FILLM
    7. PGFLQUOTA
    8. PRCLM
    9. TQELM
    10. WSQUOTA
    11. WSDEFAULT
    12. ENQLM
    13. WSEXTENT
    14. JTQUOTA
    위의 로지컬 명 중 일부는 ORA_NETCONFIG:LSNRCTL.COM 파일 안에 정의되어
    있으며 USER 레벨로 정의되어 있는 것이 바람직하다. 만약 리스너가 많은
    서비스를 핸들하고 있다면 위의 값들을 적절히 늘리는 것이 필요할 수도 있다.
    리스너가 생성하는 프로세스들에 대한 쿼타를 늘리기 위해서는 리스너 프로세스
    안에서 수행되는 ORA_NETWORK:TNSLSNR.COM파일을 수정하여 적절한 값을 설정
    하면 된다. 기본적인 로지컬 명이 이 파일에 명시되어 있지만 디폴트는 주석처리
    되어 있다. 서버 프로세스들에 대한 쿼타를 설정하는 또 다른 방법으론
    LISTENER.ORA파일에 다음과 같은 OSDS 를 명시하는 방법이 있다.
    이 방법은 SID별로 달리 줄 수 있다는 장점이 있다.
    SID_LIST_LISTENER =
         (SID_DESC =
              (SID_NAME = ORA7)
              (PROGRAM = ORASRV_NETV2.COM)
              (OSDS =
                   (PRIORITY = 8)
                   (QUOTA =
                        (ASTLM =100)
                        (BYTLM=400)
                        (PGFLQUOTA=30000)
    위의 OSDS에서 명시할 수 있는 쿼타의 값들은 제한이 없지만, QUOTA 리스트에
    하나라도 명시되어 있는 경우에는 로지컬 명을 아무리 설정하더라도 무시되며,
    QUOTA 리스트에 빠져있는 쿼타들은 시스템의 디폴트 값을 사용하게 된다.
    가능하면 서버의 PRIORITY값은 늘리지 않는 것이 추천된다.
    *ORASRV_NETV2.COM파일
    리스너가 Prespawned 또는 일반 데디케이트 서버 프로세스를 생성할 때 수행
    하는 커맨트 프로시쥬어로 다음과 같은 세개의 라인이 변경되어야 한다.
    $ ora_db = "database administration directory"
    $ sid = "sid name"
    $ dbname = "database name"
    더우기 이 ORASRV_NETV2.COM파일을 LISTENER.ORA파일에 사용하는 경우에 로지컬
    명이 아닌 디바이스 및 디렉토리 명을 Full로 지정해야 한다.
    * Bequeath Listener
    Bequeath 리스너는 이전 버젼의 Single Task방식을 대체하는 것으로 SQL*Net
    을 설정하지 않고 디폴트로 사용할 수 있는 방식이다. 이 리스너는 INSORACLE
    명령이 수행되는 경우(일반적으로 시스템의 Startup에 넣어 놓음)에 자동으로
    Startup이 되며, REMORACLE을 수행하기 전까지는 계속 수행된다. 만약
    Bequeath 리스너가 구동되지 않은 경우에는 다음과 같은 명령으로 수동으로
    Startup시킬 수 있다.
    $ BEQLSNR STARTR
    Bequeath 리스너는 특정 MailBox를 통하여 SQL*Net을 타지 않고 들어 오는
    클라이언트의 요청(일반적으로 로컬 Connection)을 받아 들여서 Detached 서버
    프로세스와 두 개의 MailBox(하나는 클라이언트의 메시지만 저장되는 MailBox,
    나머지 서버가 작업 결과를 저장하는 MailBox. 이와 같이 2개로 MailBox를
    나누는 이유는 클라이언트와 서버 프로세스가 서로 저장하고 읽어 가면 자신이
    저장한 메시지를 자신이 읽어가는 상황이 발생할 수 있기 때문임. VMS의
    MailBox는 메시지 충돌을 막아주는 기능이 없기 때문임)를 생성한 후에
    클라이언트에 이 MailBox들의 이름을 전송해주게 됨으로서, 클라이언트는
    서버 프로세스와 연결이 가능해 진다.
    Bequeath 리스너가 클라이언트의 연결 요청을 받아들이는 데 사용되는 MailBox
    는 다음과 같은 이름을 갖게 된다.
    ORA_BEQ_READ_MBX_xxxxyyyyy_n
    xxxx : 자동으로 생성되는 유일한 번호
    yyyyy: 시스템의 이름
    n : 최대 9개의 Bequeath리스너의 번호.
    Bequeath 리스너를 Stop하는 명령은 DCL 프롬프트 상태에서 BEQLSNR STOP명령
    으로 가능하며 Bequeath방식을 사용하는 경우에 자주 발생하는 문제와 이에
    대한 해결책은 다음과 같다.
    * Bequeath 방식을 사용한 경우에 발생하는 문제점의 해결책
    1. Trace정보를 남기는 방법
    Bequeath 리스너는 서버 프로세스를 Detached로 생성하기도 하지만 자신 역시 Detached 프로세스 방식으로 구동되기 때문에 사용자가 SYS$OUTPUT 로지컬 명을 Define하지 않으면 Trace정보를 볼 수 없다. Bequeath 리스너에 대한 Trace정보
    를 보기 위해서는 다음과 같은 절차를 수행하면 된다.
    a) Bequeath 리스너를 $BEQLSNR STOP 명령으로 STOP
    b) STARTUP_BEQLSNR.COM파일을 EDITER로 OPEN.
    c) NL: 문자열을 임의로 지정한 파일명으로 대체.
    d) Bequeath 리스너 재 구동.
    2. ORA-12203 : TNS: unable to connect to destination 에러가 발생하는
    경우.
    대부분이 Bequeath리스너가 운용중이지 않은 경우에 발생하는 에러로서,
    DCL프롬프트 상태에서 BEQLSNR STATUS 명령을 사용하여 리스너가 운용중인지
    를 확인한 후, 응답이 없으면 BEQLSNR STOP으로 리스너를 KILL한 후에 다시
    START를 하면 됨.
    3. 클라이언트에서 ORA-12203에러가 발생하는 경우.
    다음과 같은 2가지 방법 중에 하나를 사용하라.
    a) ORA_BEQ_TIMEOUT 로지컬 명을 120초 이상으로 (예를 들면 300초)설정
    해라. 설정하는 방법은 ORA_NETWORK:BEQLSNR.COM파일에 위의 로지컬
    명을 설정하는 라인을 삽입하면 된다.
    b) ORA_BEQ_NUM_OF_LISTENER 로지컬 명을 정의한 후 1~10사이의 값을 세팅
    해라. 이 것은 Beq 리스너 프로세스의 수를 증가시키게 되어 동시에
    들어오는 클라이언트의 요청을 빨리 처리할 수 있게 된다.
    * Bequeath Listener가 생성하는 서버 프로세스의 쿼타를 늘리는 방법
    ORA_NETWORK:BEQLSNR.COM파일에 명시된 쿼타 파라미터의 주석처리를 풀고 적절
    한 값을 세팅하면 되며, 반드시 리스너를 재구동해야 한다.

    Well thank you so far for the replies.
    Currently where I work we have a bunch of windows servers for most of everything we need. Our aging ERP system is VMS/ALPHA based (the alpha is 12 years old I think). We will have the ERP company come and migrate us to the new system.
    Some people here think (since that is what they know), that the DB and application server for the ERP should all be on VMS/ALPHA. I do not reject VMS outright, but I too have doubts about VMS's future although I KNOW it is a solid OS. I also wonder how long will Oracle develop the DB on VMS.
    So definately we will consult with the ERP company for advice on those matters.
    So my question boils down to: if running the DB and aplication on windows is a viable option for the ERP should I say no to VMS based on the cloudy future of the OS???
    Also will the VMS server performance be similar to a windows server(s) solution provided we get a new alpha???
    What about cost of the 2 solutions?
    What about support in case of issues with the DB? Should I be worried about this on a VMS based DB?
    Thanks so far for the replies, It is helping my thought process.
    Later!

  • New VMS/IPC boxes - speed and pricing

    For the most part, I've been a very happy FiOS customer. The internet side has gone out exactly once in the year I've had the service, and it was restored within an hour. TV has dropped out twice, both times very late at night (I assume for head-end maintenance). Reliability is better than every other ISP I've ever had, combined.
    That said..
    I wanted to snag another STB for the house - found out the local stores had all been closed (I can understand why from the financial aspect, but it was still a shock pulling up to my old store to pick up another STB.. and finding a "for lease" sign, when I'd been by there 2 months prior), so I looked at options online. The new VMS + IPC boxes looked promising, especially since they added the ability for the entire house to pause, rewind, schedule recordings, etc, from any TV - instead of only the DVR being able to do that (though the old boxes could stream recordings from the DVR).
    My chief complaint so far - while the VMS box itself is responsive, the IPC boxes are painfully slow to respond to anything. Picture quality is fantastic, but using them feels, to put it in nerd terms, like using a Pentium 90 with Windows XP and 128MB RAM. They take 5+ to respond to anything more than a channel change (and even that takes up to 3 seconds), and frequently "lose" remote key presses if you try to, say, hit guide, hit page down, then try to arrow down to the channel that you know is on the next page. It literally feels like a throwback to the earliest digital set top boxes from Comcast/Time Warner - the first ones with built-in TV listings in the mid 1990s. The speed is right on par with them; the only thing faster right now is they don't shut down for 30 minutes a day to update the TV listings.
    I've gone through the built-in diagnostics on the boxes to verify signal levels - they're decent (not perfect, but this is a 20 year old house with mostly original coax), but we have no pixelation or picture drop-out, so I would think they could carry the basic stuff between the IPC boxes and VMS pretty easily. The router certainly has no problem handling the 75/35 on the same coax (speedtest shows 85-90 down, 35-40 up, with a ~5ms ping, no matter which cable outlet it's plugged into)..
    My other complaint - why did Verizon move to "rooms" for pricing? I thought I was getting a DVR plus 3 STBs (since I ordered 3 STBs and asked for a DVR), instead of a VMS + 2 STBs - and I'm paying much more than I did for the old DVR + 2 STBs.
    With the griping out of the way - is there a reasonable chance that firmware updates will help with the speed of the IPC boxes? Or is there a chance it's a cabling issue? (I have no problem pulling new coax or cat5e, and I can provide signal levels if that'll help) If not, is there any chance of getting the old QIP7232 DVR + QIP7100 box back (and adding another 7100), and switching back to what I was paying before? I know they're a bit antiquated (especially the 7100s), but they were much more responsive, and didn't make me want to throw the STBs through the window. It just seems really rediculous that I'm paying such a large premium (plus the "upgrade fee") for equipment that, in terms of the user experience, is much worse.
    Again.. been a happy customer for a long time, but the new terminals are super painful to use.
    Thanks.

    If this is the case.  I think I will wait till the bugs are worked out
    Question what were you paying before and after for the boxes.   So what was the old DVR + 2 STB's and the new DVR plus 2 stb's
    Trying to get an idea of what you meant by way more.  Most people said same pricing and a small $20 or so upgrade fee

  • How do i get win 8.1. *pro* for mac parallels, deauthorizing win 8.1 pro and license rules for windows vms

    ok, i've seen this question asked a number of times.  i know the general procedure:
    - first download some installer things to a window box so i can make a bootable DVD / flash drive
    - go the mac and use the DVD / usb stick to install the virtual machine
    great.. BUT :
    1) unfortunately, i'm still really confused at the  most basic part which is where (link) do i actually get the initial download thing to create the 8.1 *PRO* from microsoft and where (link) / how do i pay for the subscription key to install the thing???? 
    i keep seeing a link for windows 8 or windows 8.1 where windows PRO is NEVER mentioned.  i ABSOLUTELY MUST HAVE a) PRO 64 bit and NOT vanilla windows and b) it MUST BE A FULL INSTALL (i'm not upgrading from windows 7, 8 or 8.1 NON pro..  i'm going
    to be installing this thing on a brand new system.
    i'm an IT guy for two decades and i can tell you trying to find, download, install a clean version of windows 8.1 PRO is a royal pita and nothing about windows 8.1 PRO is intuitive on the MS site.  it's almost as if they do NOT want you to install the
    thing.   i'm not trying to bust jewels here, i'm just being honest and providing feedback that you folks need to make this much more clear and intuitive.  people really shouldN'T have to post on forums to find out how to purchase, download and enter
    in a subscription key for a base version of an OS.  it's crazy.
    2) once i can figure out how to download, install and register the darn thing ;)... i'm curious how the licensing works.
    2a) first if my windows 8.1 pro experiment on mac parallels sucks, i want to be able to remove the authorization so i can reinstall 8.1 pro on another system.   can i / how do i do this in my scenario?
    2b) i actually already bought windows pro 8.1 about a year ago (to upgrade a laptop that came with 8 that i needed to upgrade to vanilla 8.1 then to finally to pro) so that i could windows phone 8.1 development with simulator on the laptop.  unfortunately
    the laptop maxed out at 4G and the performance of the emulator was ridiculously slow that it's unusable.  i'd love to somehow be able to put the laptop back to windows *vanilla* 8.1 and reclaim my 8.1 pro that i *already* purchased by removing the authorization
    from that laptop allowing me to reinstall the full 8.1 pro with the same key on the mac with parallels.  then i can sell the laptop that has sat there collecting dust for a year and regain my windows 8.1 pro investment vs having to buy another copy for
    the mac. 
    i have no idea how to do this though i think it should be possible.  can anybody tell me where / how i do this?
    note the win pro 8.1 install never went well so i actually had some guy from MS login to my laptop remotely and do the install.. in doing so i believe he wiped away the original windows vanilla 8.1 recovery partition asus put on the drive meaning i'm not
    sure i can get the laptop back to 8.1  or 8 vanilla so i can resell it functionally to another person while removing my 8.1 *pro* license from it.   any suggestions here highly welcome.
    2c)  once i get the windows 8.1 pro installed in a vm under parallels, i'll have one licensed copy running.  my guess is that is what i'm limited to.  but when you start working with VMs the whole purpose is to be able to create multiple test
    enviornments and dispose of them when you don't need them etc.   since the window will be tied to the single mac hw id, will i be able to install multiple *win* vms (duping an exising win vm for instance) from the one license  or must i purchase
    multiple win licenses for each win vm on the SAME system?   if you need a new license for each vm, wouldn't i have to do a FULL WINDOWS INSTALL every time i wanted to create another windows VM.. THAT IS CRAZILY INEFFICIENT...
    there has to be some kind of option to dup a windows licensed vm on the SAME system yes?  what are the rules / procedures for making this work.
    i'm using parallels on mac as an example but the same question would apply to using hyperV (which i know nothing about at this point) as the virtual host platform as well.
    i'm open to well thought out links that actually answer these questions succinctly in addition to comments here
    thanks in advance

    Hello bigbobber,
    If  you have issue in using Windows 8.1 Pro in the software  parallels in MAC?
    About this issue, it is recommended to contact the related parallels support.
    About the license issue, please read the following article about Buyer’s Guide and Microsoft software license agreement windows 8.1.
    http://www.microsoft.com/licensing/about-licensing/windows8-1.aspx
    It is recommended to contact the phone support if you have license issue.
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • VMS File Extensions

    Hi,
    We have MacOS and Win 95 boxes talking to an Alpha running OpenVMS.
    Our Forte applications run some reports on the Alpha box, due to
    their size etc. However, we want the users (on the PCs) to be able to
    manipulate the resulting files as necessary. At the moment we get a
    list of the files in a "user" directory and display that on the
    screen. Unfortunately, we can't seem to get the version numbers of the
    files (it isn't in the suffix, where I would expect it to be). This is important, as the
    User needs to know which file is the latest version (or the previous one etc).
    Does anybody have any way of getting the version number for a VMS
    file in Forte?
    Thanks in advance
    Derek Rendall
    University of Otago
    New Zealand

    Elevlyn,
    Thank you for fully explaining the situation. Now I can suggest you try this .ged reader.
    1) Make a backup of your ged file.
    2) Download the reader, and run a virus scan on the program before you run the the installer.
    3) Test the reader
    4) Please report back the progress. What the reader OK?
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • VMS Client Channel Buffering Problem

    I just received my new Verizon VMS system which includes 2 client units.  I hooked everything up and all was working as it should except that when watching live TV on the two client units, it will not buffer two different TV channels and allow me to switch back and forth between these two channels and rewind, fast forward or pause.  It will only buffer one channel and when I switch to another, the original channels buffer is gone.  I could do this on all three of my standard HD DVR boxes before swithcing to the VMS and this was a huge feature for me as I like to watch multiple shows or sporting events simultaneaously.  I called support and after about 90 minutes they could find no problem or find any solution other then to send me a new VMS.  The odd thing is when they looked at all of the tuners being used, tuners 3 annd 4 were never getting used.  The odder thing is that it seemed to work properly on one of the client boxes until they did a cold init and then that one also stopped allowing 2 channels to be buffered.
    Should I be able to buffer two seperate channels on the client boxes as well as the main VMS box or did they for some awful reasone take this feature away from the clients??
    Thanks,
    Eric

    DOES VMS DO THESE THINGS FOR YOU ?
    VZ  VMS1100 Video Media Server
    From Pg of 2 of Manual
    The VMS1100 provides the following advanced functionality:
    • Whole home DVR support for up to four connected IP Client set-top boxes
    • Authorization and purchase of on-demand programming
    • High-Definition television (HDTV) video decoding
    • HDTV output through component video (YPbPr) or High-Definition Multimedia Interface™ (HDMI™)
    • Surround-sound audio through a variety of analog and digital interconnection options
    Live playback and LOD buffering capabilities to pause and time shift live video and seamlessly record for
    all connected televisions
    • Built-in MoCA 1.1/2.0 HW support
    As with all ARRIS digital set-tops, the hardware features are enabled by core operating and third-party
    application software.
    Tom
    Freedom Essentials, QIP 7100 1,Bose SOLO TV Sound System,,QIP 7216 P2,M1424WR Rev F, iPad 2 WiFi,iPhone 5,TV SYST INFO Release 1.9.5 Build No. 17.45
    Data Object 39.45

  • VMS 1100 and Slingbox

    rataylor wrote:
    Thanks! Is STB the same as the new VMS server box? (Will it even work with the client box?)Lots of terms there.  A DVR including the new VMS boxes is a STB.  However the older Verizon STB's and DVR's will not work the VMS box.  Only the new IP boxes work with the VMS box.   And the IP boxes will not work without at least one VMS box.  The previous STB did not have to have a DVR box in order to work.

    Thanks for the suggestions. I think the problem is my Slingbox is the original "SOLO" model and the new FIOS equipment uses 1080i for signal. It would probably work if I got the new Slingbox 500 which also uses 1080i. One last question....if the Client & TV are hooked up via HDMI and the SOLO is connected to the Client with the component cables, can it send a signal to both units or does it have to be connected one or the other? I know it worked set up like that with the old DVR I had but I think that had more than one tuner whereas I've read the client just has one.

  • VMS new install - IP box issues

    Installed my VMS and 2 IP boxes without issue.  However, I am now seeing a problem between the IP boxes.  I only have the 3 total units.  While watching a channel on IP1, if I put the same channel on IP2, IP1 freezes, as if it were paused.
    To correct the problem, I need to turn off IP2 then change the channel on IP1 to something different and then return to the original channel.  Anyone else seeing this?  We have to be able to watch the same channel on multiple TVs...

    I did a bit of Googling after I've been working this issue for several hours straight, and it seems I have the dreaded "NF3 vs 6800" issue.
    I have flashed the BIOS to clock the BFG 6800GT OC back down to 350/1000 and even went so far to push it back to 345/1000.  I have turned fastwrites off, the hidden ATI/NV setting in the BIOS is turned off, I tried pushing the voltage to the card up to 1.6 and used NiBitor and RivaTuner to try and force the 2d/3d times to be the same. 
    Nothing worked.  I'm still getting annoying "RGB pixilation" as well as periodic UI freezes for half a second.  Called BFG and they said they knew of no issues, and after doing a bit of searching on this board, it seems to be an NForce vs. 6800 problem.
    Has anyone got any other ideas before I go over to the darkside and purchase a VIA board?

  • VMS & IPC Low MOCA speeds Check your COAX!

    To much load on the COAX? Two 4-way by directional splitters and the router sits on the first splitter.
    Make sure in is in and out is out.
    Quantum TV ROCKs! Now that I removed the sand.
    Enable Client Ethernet option with hopes they built it with Gigabit!
    System Log
    LAN Coax
    LAN Coax Link Low Rate <TX 89Mbps/RX 113Mbps>
    Actiontec issues, did not see this prior to Quantum TV?
    Why does the router report this if the Ethernet is supporting the computers at Gigabit, and MOCA LAN is supporting the IPC Clients?
    The clients should not care at this MOCA speed?
    Does it matter that the LAN is running slow, since the MOCA WAN and LAN are at a different frequencies, and MOCA WAN not used with Ethernet WAN configurations?
    Or would this too cause a bottle neck on the bridge, because with Gigabit LAN it should not?
    Come on Verizon get a router with MOCA 2.0 and decent Wifi!
    All VMS and IPC devices report a good SNR. Is this only an issue with the load on MOCA it you are running MOCA WAN?
    ONT, 1- MI424WR-GEN3I, 1- VMS-1100, 3- IPC-1100, and 1- Media Center Network Tuner. Now say I add another VMS-1100 or more clients.
    The CSR was clueless, and kept wanting access to my private network and PC. I don't think so. Do what you wish on your network, mine is mine!
    Solved!
    Go to Solution.

    Make sure in is in and out is out.
    Quantum TV ROCKs! Now that I removed the sand.
    Check your in and out splitter connections and make sure they are tight and in is in and out is out.
    I will be the first to admit when I double check my work and find I was wrong. Hey what do you want when your reconnecting  coax cables after running Media Center extenders on Ethernet for 16 months in anticipation.

  • Any way to increase the default Heap size for all Java VMs in Solaris 8

    Hello,
    I have a java product that deals with large databases under Solaris 8. It is a jar file, started by a cron job every night. Some nights it will fail because it runs out of Heap memory depending on the amount of records it has to deal with. I know that I could increase the java VM heap size with "java -jar -mx YY JARFILE" command but I have other java products that are showing the same behavior, and I would like to correct them all in one shot if possible.
    What I would like to do is find a system or configuration parameter that forces all Java VMs to use a larger MAX Heap size than the default 16M specified in the Man page for Java. Is there a way to accomplish that?
    TIA
    Maizo

    You could always download the source and modify it.

  • How many VMs can be build using below configuration

    Hi,
    I have ESXi 4.0 cluster with 6 ESX box.Each box has 8 CPU with 2.66GHZ speed (Total ESX cluster CPU resources is 127 GHZ (48 Processor) and memory is 328 GB. I have deoploy to VMs with configuration 4GB RAM,2VCPU.
    Can anyone please let me know how many VMs can be deployed with configuration 4GB RAM,2Vcpu on this Cluster?
    Thank You

    It will be hard to say with out knowing the load in the VMs -  with aligh load you should easily be able to get 80-100 VMs on the cluster.
    Is there a reason why you are using 2 vCPUs - best practice is always to start with a single vCPU and add more if needed - doing this will increase the number of VMs possible -

  • Windows Update on VMs seems to only work one at a time

    I have a handful of Win 2012 R2 VMs (running on ESXi) I've inherited. I've tried 3 or 4 times to update them now since taking them
    over, and noticed the strangest thing - only one of them will download updates at a time. If I start the update on all of them, the others will just hang at 0%. A little while after one finishes, another one will finally start to download. I'm completely stumped
    as to why/how this could be happening. Is this even possible, or just an incredibly strange coincidence? Is there anything I can check to prove one way or the other? I'm wondering if it's something odd like they were all cloned from one base VM in some odd
    way such that WU is seeing them as the same server when they try to connect or something... Other computers can connect to WU while this is happening; it's just this little cluster of VMs that were all built together.

    Hi Allison,
    Just addition. Did you check if those problematic VMs can access internet at the same time? For example, can
    those VMs browser any webpage successfully at the same time, not just download updates? Meanwhile, please check if there has policies on router ports to limit the number of MAC addresses per port.
    Hope this helps.
    Best regards,
    Justin Gu

  • Error while executing action SMCO in VMS Build-to-Order process.

    Hello All,
    When I execute the Action 'SMCO' for service order confirmation, the system says that the action cannot be executed due to the error: "Actual date(s) is in the future (check parameters)". Also the Actual start & End Dates are blank in the service order. This is creating a problem such that the Action 'SMIO'-Create Billing request for service order cannot be executed for completion of the Build-to-Order process.
    Is there any customizing setting in ECC - Customer Service (CS) component which is causing this error?
    Thanks in Advance,
    Pramod

    HI Kaustubh,
    Thank you for the response.
    The Action matrices I use are ECMM (Primary) and ECSD (Secondary) and the set up is perfect. I was able to do it earlier and we also had a detailed system walkthrough but it seems to be different now may be due to some customizing changes.
    It seems to be an issue with the setup in customer service (CS) which is controlling our  VMS. I am executing the actions in the sequence SMNO (service notification) then SMOR (service order) and then SMCO (service order confirmation). Now the issue seems to be with service order confirmation where my Actual Start and End dates are blank which should not be the case to confirm the service order (SMCO).
    Pleaes let me know if you need more information on this.
    Regards,
    Pramod
    Edited by: Pramod Puttam on Sep 10, 2009 11:25 AM

  • Migrate Roles failes when migrating VMs with legacy network adapters (2008R2 - 2012)

    I'm working on a upgrade of Hyper-V 2008R2 cluster to Hyper-V 2012 cluster. I am using the "migrate roles" feature of failover clustering to migrate the CSV's and VM's. The wizard ask to which switch the VMs need to be connected on the target cluster.
    All VMs with network adapters can be started in the new cluster without any issues. If you look at the XML file of the migrated VMs with normal network adapters, a new XML has been generated in the proper 2012 format. However, all VM's with a legacy
    network adapter fail to start. Also there is no migrated XML file in the VM directory. It is impossible to check or adjust the settings of the migrated VMs with legacy network adapters using the failover clustering console.
    I have reproduced the issue in my lab several times, and it seems like a bug.
    There are several workarounds, but I am looking for a real solution.

    Hi,
    We recommend that you use the legacy network adapter only to perform a network-based installation or when the guest operating system does not support the network adapter.
    If the virtual machine continues to use the legacy network adapter it will not be able to leverage many of the features available in the Hyper-V virtual switch. You may want
    to replace the legacy network adapter after the operating system is installed.
    The related KB:
    Building Your Cloud Infrastructure: Converged Data Center without Dedicated Storage Nodes
    http://technet.microsoft.com/en-us/library/hh831829.aspx
    Configure Networking
    http://technet.microsoft.com/en-us/library/cc770380.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Create a UK based image for VMs

    Hello, 
    We are trying to install an application which requires a UK (en-GB) locale, however have not had much success in trying the default images, then converting them to UK regional settings (via group policy, copy settings..." function in Region and
    Languages or via the registry).
    Given we can't get the out-of-the-box images working, we have turned to creating the basic VM locally stating with UK settings, then uploading the image.
    We assume that once sysprep has been run and the image provisioned within Azure, the locale will be configured to US.  Based on this, we are trying to use unattended.xml to set everything to UK settings, so the machine never is configured to US at any
    stage.  On doing so, the provisioning eventually fails.  Reading around the subject, articles state to delete unattended.xml and other articles state that the unatteneded.xml can conflict.
    The question is: Can certain settings be placed in the unattended.xml and if so, can the regional settings be placed here (does anyone have a successful example file used in Azure)?
    If the unattended.xml can not be used to achieve this, can anyone suggest (ideally with detailed steps) how we can achieve a VM with UK based regional settings (not just a US one which we then try to update via registry or the "copy settings..."
    function in Region and Languages)?
    With thanks,
    Richard

    Hi Richard,
    Azure uses an unnatend.xml file as part of the deployment process for new VMs. Currently it is not possible to upload your own unnatend.xml file
    to choose roles, features of settings to be added during deployment.
    I recommend you to submit your requirement in the link below:
    http://feedback.azure.com/forums/34192--general-feedback
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • We are sharing one account for 3 iphones, everytime one of us purchase some app, the app show up in the other iphone as well. How do we disable this?

    Me, my wife and sis are using the same apple account for our 3 iphone. Everytime one of us purchase a app online, the other two will have the same app installed automatically. Sometimes is good, but most of the time, it's annoying. Is there anyway to

  • How do i embed photo in body of yahoo mail with firefox? tom

    if i copy a jpeg image from my documents and paste into the body of an email i want to send from yahoo mail it looks ok, but if i open that email in gmail, there is no image; just a long series of letters and numerals... what can i do to embed a phot

  • Splash image not working in JNLP

    Hi all... Splash image is not get displayed in my Application.. Here is my JNLP file. <jnlp spec="6.0+" codebase="http://localhost:8080/MyProject/">   <information>     <title>MyProject1.0</title>     <vendor>My Company.</vendor>     <homepage href="

  • Audio Problem on Quicktime Pro/Ipod Classic

    I just downloaded Quicktime Pro and followed the steps in order to get a video from my desktop to my ipod classic. It looked and sounded fine on my Itunes (Aside from taking forever to convert). But by the time I had to convert it again for my ipod t

  • Performance with EJB3.0!

    Hi Friends, My requirements is, I have 1GB file.I need to read this and update into database.Presently I am able to read and update into databases.But the issue is performance.This 1GB data will take for postgres nearly 5 hours and in Oracle is 18 ho