Problem running AIR app on windows server 2003

Hello,
I have an AIR app that I am trying to run from a Java program under Windows 2003. (It runs perfect on XP and Vista.)
The problem is whenever I try to run the AIR app, it runs "Adobe AIR Updater.exe" which causes the app to not run. And both the process stop responding. I can see them both in Task Manager. I disabled the AIR automatic updates using the Settings Manager application but it still runs the Adobe AIR Updater.exe file.
Any help to resolve this problem would be highly appreciated.

Not sure about  copying eulaAccepted file from one location to another - that would really depend on which user account your service is running under.
A better approach (IMHO), is to open the services window (My Computer | <right-click> | Manage, then navigate to Services and expand the tree) so you can see your service on the RHS.
Stop your service, then inspect it's properties, select the 'Log on' tab, then check the checkbox which says "Allow system to interact with desktop". Apply the change, then restart your service.
next time the AIR runtime prompts you to accept the EULA, the window will appear on the screen, so you can click "I accept".
After accepting, reverse the procedure which allowed the service to interact with the desktop, and make sure that you have modified the registry to prevent AIR from updating as mentioned in:
http://help.adobe.com/en_US/AIR/1.5/air_admin/WS5b3ccc516d4fbf351e63e3 d11c0f59823a-7ff0.html
You should be all set.

Similar Messages

  • Problem starting AIR app from windows server 2003

    Hello,
    I have an AIR app that I am trying to run using a c#
    webservice under Win 2003.
    I am starting the application process (air .exe file) as the
    "Network Service" user which has full-rights on the app-folder and
    app-working folder. The problem is that once with the applications
    the "Adobe AIR Updater.exe" process is starting to (using the same
    user N.S.) and both of the processes stop responding.
    I have tried to start the process as "Local Service" with
    "Desktop Interaction" too but unfortunately with no result.
    I must tell you that under XP and Vista it runs perfect...
    Is there any security issue related to win 2003 or any way i
    can start an air app from command line.
    Also i am interested why "Adobe Air Updater.exe" is starting
    ?

    Not sure about  copying eulaAccepted file from one location to another - that would really depend on which user account your service is running under.
    A better approach (IMHO), is to open the services window (My Computer | <right-click> | Manage, then navigate to Services and expand the tree) so you can see your service on the RHS.
    Stop your service, then inspect it's properties, select the 'Log on' tab, then check the checkbox which says "Allow system to interact with desktop". Apply the change, then restart your service.
    next time the AIR runtime prompts you to accept the EULA, the window will appear on the screen, so you can click "I accept".
    After accepting, reverse the procedure which allowed the service to interact with the desktop, and make sure that you have modified the registry to prevent AIR from updating as mentioned in:
    http://help.adobe.com/en_US/AIR/1.5/air_admin/WS5b3ccc516d4fbf351e63e3 d11c0f59823a-7ff0.html
    You should be all set.

  • AIR application on Windows Server 2003

    Hi!
    We have developed an AIR application.
    It is installed on Windows Server 2003.
    It communicates with blazeds server application on other machine.
    But communication does not pass through to this server.
    Everything works fine on Windows XP.
    So we suspect on Windows Server 2003 security settings.
    How can Win Server 2003 be configured so that communication succeeds?
    (amfsecure, https web service).
    Thanks!

    Joe,
           If your application is running in Windows than it is not running in true realtime and you cannot make it a real-time startup executable.  In LabVIEW 8.0 and later you can create a debuggable executable, with which you can see the block diagram of an executable.  This Knowledge Base Article talks about how to automatically launch a VI at startup, which sounds like what you are looking for.  Here is a link to the Real Time Module for LabVIEW.
    Cheers,
    NathanT

  • Any problems running BO XI R1 on Server 2003 "R2" / SP2

    Still running BO XI R1 on Server 2003 Standard Edition / SP1 but would like to UPGRADE OS to 2003 "R2" Standard Edition / SP2.   I know R1 is out of support but is anyone running XI/R1 under this OS.  Documentation for R1 only states support for 2003 SP1.   I did open support dialog and they said it should be OK.   Just trying to get a feel if anyone is actually running this configuration in the real world.

    I installed SP2 on all my 2003 VM's for both XIR2 and XI 3.x. There are no issues that I know of everything works fine. SP1 used to cause issues on XIR1 with DEP but form the details you supplied I don't see that as an issue. Do you already have SP1 on 2003? Also you said 2003 R2 (which should be past the DEP patch). If that's the case then no issues that I know of.
    Regards,
    Tim

  • Problem of isFile on Microsoft Windows Server 2003

    Dear all,
    Thanx all for your support in case of previous questions...
    Right now we are facing issue with isFile method of java.io.File class.....
    On windows xp and unix machine it is returning true for files....but on one machine at client side it is returning false...
    Please find os and jre details of same machine..
    OS - Microsoft Windows Server 2003 ( Enterprise Edition - Service Pack 2 )
    Java Version - JRE6 ( SUN MICROSYSTEMS, INC)
    Main issue is same is working on other machines....
    using filefilter....
    it is returning false on .......if(tempFile.isFile())...statement......PLZ help me...is there any OS related dependency....
    package com.hth.filter;
    import static com.hth.vars.IbankVars.*;
    import java.io.File;
    import java.io.FilenameFilter;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class FilesFilter implements FilenameFilter {
         private static Pattern p = Pattern.compile(FILES_PATTERN_TO_BE_EXCLUDED);
         private File tempFile=null;
         private static String fileSeparator=null;
         private static String excludeExtensionList="";
         private int corporateId =-1;
         public FilesFilter(int corporateId){
              this.corporateId=corporateId;
         static{
              try{
                   fileSeparator=System.getProperty("file.separator");
              }catch(Exception e){
                   fileSeparator="\\";
                   e.printStackTrace(System.out);
         public boolean accept(File folder, String fileName) {
              // TODO Auto-generated method stub
              Matcher m = p.matcher(fileName);
         if(m.find()){
              return false;
         }else{
              tempFile=new File(folder,fileName);
                   if(tempFile.isFile())
                        System.out.println("FilesFilter-fileName:"+fileName+"IS FILE");
                        //if(fileName !=null && fileName.indexOf(UNDERSCORE)!=-1){
                             /*     if(fileName.substring(0,fileName.indexOf(UNDERSCORE)).equalsIgnoreCase(String.valueOf(corporateId)))
                                  if(fileName.lastIndexOf(DOT)!=-1)
                                       StringBuffer strFileExt =new StringBuffer(COMMA);
                                       strFileExt.append(fileName.substring(fileName.substring(0,fileName.lastIndexOf(DOT)).length()+1,fileName.length()));
                                       strFileExt.append(COMMA);
                                       if(excludeExtensionList.toLowerCase().indexOf(strFileExt.toString().toLowerCase()) != -1){
                                            //file extenstion is configured in property file for exclusion.Hence return false;
                                            return false;
                                       }else{
                                            //file extenstion is not configured in property file for exclusion.Hence return true;
                                            return true;
                                  }else{
                                       return false;
                             /*}else
                                  return false;
                        }else{
                             return false;
                   }else{
                        System.out.println("FilesFilter-fileName:"+fileName+"IS FOLDER");
                        return false;
         public static void setExcludeExtensionList(String excludeExtensionList) {
              if(excludeExtensionList!=null)
                   FilesFilter.excludeExtensionList = COMMA+excludeExtensionList+COMMA;
    }

    Right now we are facing issue with isFile method of java.io.File class.....
    On windows xp and unix machine it is returning true for files....but on one machine at client side it is returning false...So it's a directory not a file.
    Next time please use the CODE button above to format your code.

  • Running iTunes 8 on Windows Server 2003, avoiding 2096 error

    Since QuickTime 7.5,nor iTunes neither QuickTime would run on my Server 2003, and the famous 2096 error came up. Unfortunately the new 2+ iPod firmware required iTunes 8 so I had to do something about it. The solution by apple was to turn off compatibility mode, but that was not on in the first place. Reinstalling, searching the net for solutions,.. nothing helped.
    So here is how I solved my problem. QuickTime 7.5+ requires at least XP SP2 so i followed this guide > http://www.sheebz.net/post/2008/03/Running-Photoshop-CS3-on-Windows-2003-Server. aspx
    and did the same both for the QuickTime and iTunes executables(instead of the setup.exe in the guide), and viola they are running. Note that the Microsoft Application Verifier program must be running when you start iTunes or QuickTime. The cool thing is that you have to do this only once, seems it just needs to pass the first check and after that you're good to go, no need for the Microsoft Application Verifier to be running anymore. Enjoy

    Well now we're getting somewhere.
    The RDP connection is fast, as there is nothing but 100Mb/s LAN and a switch between my desktop and the server, so thats not it. Quicktime is fine, so thats not it.
    I AM, however, running iTunes 4.8.0.32. I'm not very keen on the idea of moving to 6.0.2 for reasons that I'd rather not go into on this particular board... Is (the upgrade) this something i can do on the one machine unassociated with my apple ID? What parts of the older version are problematic?
    thanks!

  • Crystal 8 Web Component Server ond Windows Server 2003 and IIS 6

    I am trying to get Crystal 8 Web Component and Page Server to run on Windows 2003 Server with IIS 6. I have done the following:
    Added the .cri and .rpt ISAPI extension mappings
    Have Cache ISAPI extentions selected
    Deselected "verify that file exists"
    Aded the .cri and .rpt MIME types
    Added wcsinsapi.dll as a IIS 6.0 extension
    The above resolved all HTTP 40x.x errors but when trying to access a report from IE I receive the following error:
    Error: Could not connect to the Web Component Server.
    The page server and web component server services are running and I do see the listen ports (6401, 6403) active.
    I know this is old software but it works quite well under a Windows 2000 Server and other web postings indicate that it is possible to run Crystal 8 under WS2003 and IIS 6.
    Does any one know of a white paper/support document that details how to run Crystal 8 under Windows Server 2003 and IIS 6?
    Has any one done this successfully?
    Any tips as to cause of the "Could Not Connect" problem would be greatly appreciated.

    Well as it turns out it looks like it was just this server.
    We tried everything, and I added those user accounts to full
    permission for the Coldfusion folders and we just could not get it
    to work. We tried it on another couple servers running 2003, and it
    installed perfectly right out of the box with no other permissions
    needed. And those servers were all running default configs with no
    other permissions done.
    We still have no idea what was the problem, but at least for
    now it seems to be this server. But I will tell you what, that II6
    stuff seems to be a bit of a pain, we had major problems installing
    new version of PHP with it too. Oh well, good luck to you
    too!

  • Oracle 10g on Windows Server 2003 Standard 64bit

    We are running Oracle 10g on Windows Server 2003 Standard 64bit Edition. I am NOT a DBA, so forgive my ignorance.
    We have 16GB of physical memory in this server. I was told by a DBA that Oracle runs on "a single process", and because of that, he said that Windows Server 2003 Standard will only allow 2GB max for a single process.
    Can anyone confirm this? Thanks.

    This sounds more lika a Windows issue. If both Windows and app is "64-bit", I would expect the user virtual address space (per process) to be in the TiB range, if not larger.
    (The said 2GiB limit applies to a 32-bit system.)
    Message was edited by:
    orafad

  • Windows server 2012 as primary DC and DNS server and windows server 2003 as secondary DC and DNS

    Migration from windows server 2003 AD DC and DNS server to windows server 2012 R2,
    Cannot I set up Windows server 2012 R2 as primary DC and DNS  , windows server 2003 as secondary DC and DNS ? (for backup server when server 2012 fail, user can continue to login and access internet services)

    You can mix both as long as your Forest and Domain Functional level are Windows Server 2003. However, I would like to bring your attention to this blog about known problems when mixing DCs with Windows Server 2003 and 2012 R2 OS:
    http://blogs.technet.com/b/askds/archive/2014/07/23/it-turns-out-that-weird-things-can-happen-when-you-mix-windows-server-2003-and-windows-server-2012-r2-domain-controllers.aspx
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Windows Server 2003 Share Problems

    Here's a doozy ...
    Client boots their brand new HP laptop and logs in to their Windows Server 2003 domain. The laptop connects wirelessly to a WRT54GS v2, model WAP54G, Firmware v3.03.6. Normally, a logon script runs that runs a set of "net use" commands to set up the client's familiar network drives.
    Only sometimes, for some reason, it doesn't work. He won't always be connected to those network drives. If he tries to reach them, he'll be told either he can't reach the network or they've already been assigned (??).
    He works around this in a few ways, all of them sporadic. He can a) try to repair the wireless connection, "jiggling" the line so to speak. Sometimes he gets lucky and all is well. Or he can b) reboot the computer, either a warm or cold start. Again, after a few tries he hits the jackpot.
    Meanwhile, his IP appears consistent and the lease is good for a week.
    Perhaps there's some degree of pilot error here. Clues welcome!
    - Joe

    Nice work, mate.
    I think I know where the problem is.
    According to the info you've provided;
    "He sees two SSIDs, one called "company" (for the sake of argument), and the other called "linksys" - and he always connects to the one called linksys."
    You actually have two wireless networks instead of one. That makes the 2 units independent of each other and connects/reconnects your laptop to your domain. They both see the laptop and send packets to it, thus also renewing some 'leases' between them.
    According to the WAP54G manual you can read (ch5, page 10) that the SSID need to be the same on both units to work as 1 combined wireless network. (make sure they are spelled correctly. 'Linksys' and 'linksys' can sometimes be accepted as two different SSID's.) 
    Regarding the channels it's more of the 'noice in the air'-factor. If you live in an area where there are lots of wireless networks, channels can be overloaded with traffic. Changing into a more 'silent' channel (different freq) you all gain better connection rates.
    So try changing the SSID so they both get the same SSID. That way you should only find 1 wireless network instead of the two.
    Give a post if the disconnects stops and the network is running as planned.
    Message Edited by Aldoran on 05-31-200711:38 PM

  • Java2SDk 1.4.2.06 installation problem on Windows Server 2003

    I tried the installation of Java2SDk 1.4.2.06. ,I tried this, but it fails to complete and NO directory folder is created so I cannot continue with the proccess. The OS is Windows Server 2003.
    I have done the following procedures:
    Enabled/Disabled the IIS configuration
    Enabled/Disabled the Windows Firewall
    Enabled/Disabled Antivirus software
    The error in the event log is:
    Event Type: Error
    Event Source: Application Error
    Event Category: (100)
    Event ID: 1000
    Date: 3/6/2007
    Time: 2:23:49 PM
    User: N/A
    Computer: GERSSERVER
    Description:
    Faulting application msiexec.exe, version 3.1.4000.1433, faulting module unknown, version 0.0.0.0, fault address 0x0013b43e.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74 Applicat
    0008: 69 6f 6e 20 46 61 69 6c ion Fail
    0010: 75 72 65 20 20 6d 73 69 ure msi
    0018: 65 78 65 63 2e 65 78 65 exec.exe
    0020: 20 33 2e 31 2e 34 30 30 3.1.400
    0028: 30 2e 31 34 33 33 20 69 0.1433 i
    0030: 6e 20 75 6e 6b 6e 6f 77 n unknow
    0038: 6e 20 30 2e 30 2e 30 2e n 0.0.0.
    0040: 30 20 61 74 20 6f 66 66 0 at off
    0048: 73 65 74 20 30 30 31 33 set 0013
    0050: 62 34 33 65 b43e
    Please advice on this problem. Other tech support recommendations were to reinstall the OS.
    I have also tried installing the latest version of Java 2 SDK without success.
    Thanks for your support
    William Hernandez
    UPR-Mayaguez Campus

    Thank you so much for your help!
    I have just tried as you said. Now I see that actually at the beginning of the intallation, there is a NullPointerException. Here is the error information:
    ===============================
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Launching Java(TM) 2 Runtime Environment...
    java.lang.NullPointerException
    at sun.java2d.SunGraphics2D.revalidateAll(SunGraphics2D.java:2086)
    at sun.java2d.SunGraphics2D.drawString(SunGraphics2D.java:2536)
    at com.sun.wizards.awt.Header.paint(Header.java:112)
    at sun.awt.RepaintArea.paint(RepaintArea.java:177)
    at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:260)
    at java.awt.Component.dispatchEventImpl(Component.java:3678)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    ===============================
    Please help me out of this. Thank you.

  • Unable to bind MacBook Pro (running 10.6 - Snow Leopard ) to Windows Server 2003 domain

    Hi there, I've been working on this problem for a few hours now (and a few hours last Thursday) and don't feel I'm getting anywhere, so I'm reaching out for help....
    My organisation has just purchased a new MacBook Pro, running Snow Leopard (OSX 10.6) and as a Technical Support Engineer I have been asked to configure it for an end user.
    I am currently trying to join it to our corporate domain, which is a Windows Server 2003 domain operating at the Windows Server 2003 Native domain functional level.
    The MacBook is configured to use DHCP, and has been assigned valid IP address, DNS servers etc by the DHCP server. It can resolve all names on our network, including the names of our domain controllers. When I use nslookup to resolve the name of the domain "my_domain.local" it returns a list of DC's on the domain, which would indicate to me that name resolution is working perfectly. It is using our primary DNS server, 'Ponus' to resolve these names - Ponus is also the Domain Controller in this site.
    To attempt to join the MacBook to the domain I have created a computer account for it on the domain, in the Computers container. I have gone into System/Library/Core Services and run the Directory Utility.
    In the directory Utility I have ticked Active Directory and clicked on it to edit. The 'Forest' field is greyed out and set to 'Automatic', in the 'Domain' field I have entered my_domain.local, which is the FQDN of my domain. I click Bind and when prompted enter my Domain Admin username and password (in the 'Create Computer Account in:' field it displays correctly as CN=Computers,DC=my_domain,DC=local.)
    When I click OK I get the message: Invalid domain. An invalid Domain and Forest combination was specified. You should enter a fully qualified DNS name for the domain and forest (e.g., ads.company.com).
    I have attempted writing the domain as my_domain.local, my_domain.local., MY_DOMAIN.LOCAL and MY_DOMAIN.LOCAL. but I get the same error each time. I have checked and rechecked DNS is resolving OK, and cannot see why it cannot find the Domain and Forest from the FQDN that I am entering. Even so I tried creating records in the hosts file on the MacBook to point to the main Domain Controller at this site (Ponus) but this didn't change anything.
    I have seen a few people report the same issue online but the responses tend to fizzle out before anyone gets to the bottom of it. I have seen some indication that people with an understore (_) in their domain name, or with a .local domain name may experience issues with joining Mac hosts, however these details are very vague and if true there must be a workaround.
    If anyone could help me with this I would greatly appreciate it, I'm running out of time to complete this work and have run out of things to try.
    I have an inkling that this is due to the Mac for some reason not reading the SRV records for the DCs and LDAP in DNS, or to do with the Mac looking only at one SRV record (ie. there is one for a new DC that we haven't deployed yet), not being able to reach this and giving up, but I'm clutching at straws really with my limited knowledge of the Macs process for joining the domain.
    Many many thanks,

    Hi there,
    A simple suggestion , please make sure both MacBook Pro clock and the server clock are the same meaning the hour/Min/ sec both should match. A least difference of 3 seconds is fine.
    I had faced this problem in many place and only solution was to match the time and it will bind immediatly.

  • Problems with the shared files of Windows Server 2003 and Mac

    I have some Mac computers in the domain of my LAN Network, and when I share a folder in Windows Server 2003 sometimes the Mac can not see and sometimes yes, but lasts a long time so that they can view folders. I have installed the protocol Apple Talk on the server and File Server and in the Domain Server.
    The folders when users have no security users or groups are immediately with a connection AFP, but if they have not already created security can be displayed with a connection AFP, but if you can visualize a connection with SMB, but I can not work with Quark 6.0 Pro files.
    What can I do to solve this problem.
    Asalomon

    The newer printers:
    canon irc3100
    canon ir5020-i have working on osx side, not in classic
    Older printers:
    hp laserjet 5m-2 of these
    hp 2200
    hp laserjet 5si-2 of these
    hp laserjet 4100
    These are installed on windows 2003 with mac print services running. I need to know what option i should use in osx when installing these network printers on these macs. When i go to printers folder, i chose windows printing then it prompts for the ppd file. I found it for the ir5020 but not the ir3100. I really need to test the hp laserjets in osx too. Ill post up when i test those. But that one canon (ir3100) is bothering me. They are roughly the same age and the drivers on the site don't seem to work.

  • Windows Server 2003 (sp2 - 32bit) - OEM problem

    I inherited this in-house (closed) system a few years ago and have not had a problem until a couple of months ago.  It has been running for about 1 1/2 years.
    Desc:   Oracle 11.1.0.6 (64bit) on Windows Server 2003 (sp2 - 32 bit)   [[ yes, I know, what the heck is a 64 bit Oracle running on a 32 bit windows?]]
         2 - instances running -  one production with associated ASM,  one RMAN cat with no ASM -  all folders are backed up to a large SANS.
              -  each instance has its own listener
              -  each instance has its own dbconsole service
    Problem:
    1.  a couple of months ago, when I attempted to access the production OEM, I started seeing
    service-specific error 1 (0x1), NET HELPMSG 3547 
         -- the first time this happened, I immediately opened the OEM for rman and it was successful
              It was also fortunate in that we were doing some power upgrades and all of our systems were shutdown - and after this system was powered on, the production OEM worked fine.
         -- a few weeks later, the prod OEM was not accessible - giving the same 3547 error.  We were not able to shut down, so I stopped the Windows services for this instance, and stopped
                   the windows listener services for both instances.  I then started only the production windows services, and was able to use the prod OEM.  Then I started the listener service for
                   the rman and all was well.
         -- this Monday (today is Thurs), the prod OEM was inaccessible again and I tried the stopping and restarting of the services and started seeing 7024 errors.  I tested the rman OEM and
              it was fine.  I stopped both instances via sqlplus commands, used emctl to stop both dbconsoles (of course, the prod one was already not running), shut down the ASM instance and
              then stopped all the Windows services.  then I only brought up the prod services and confirmed with sqlplus commands that everything was started - but the final service, dbconsole
              would not start.  This morning I was able to reboot the server (after shutting down all the Oracle services) and now I can access the prod and the rman OEMs.
    2.  What the heck?   Because I can get the prod OEM working with just a reboot, I don't know if I should have to rebuild dbconsole.   And since I'm the only one disuncombullated because
              of the prod OEM, it is not a fall-down-crying situation - I'm actually a sqlplus kinda guy, but when I'm just doing visual maintenance, it is nice to view OEM remotely for a quick check.
    3.  I've been working with Linux systems and Oracle for many years and I've never experienced this kind of problem.   Oh, and since it is a closed system, it will be when pigs sprout wings
                   and start flyng that I'll be allowed to install patches - but again, if a reboot 'fixes' this issue, what the heck?  Oh, finally, I don't believe in the common windows fix of rebooting - I'd
                   like to find out WHY this is happening and literally fix it.  
    ANYBODY have a clue?   Not me...
    Thanks for your time.

    user12183171 wrote:
    I inherited this in-house (closed) system a few years ago and have not had a problem until a couple of months ago.  It has been running for about 1 1/2 years.
    Desc:   Oracle 11.1.0.6 (64bit) on Windows Server 2003 (sp2 - 32 bit)   [[ yes, I know, what the heck is a 64 bit Oracle running on a 32 bit windows?]]
    You'd better double check that.  It is fundamentally impossible for 64-bit software to run on a 32-bit OS.
         2 - instances running -  one production with associated ASM,  one RMAN cat with no ASM -  all folders are backed up to a large SANS.
              -  each instance has its own listener
    One single listener, with the default name of LISTENER, using the default port of 1521, is quite capable of -- indeed, was designed to -- service multiple instances of multiple versions running from multiple homes.
              -  each instance has its own dbconsole service
    Problem:
    1.  a couple of months ago, when I attempted to access the production OEM, I started seeing
    service-specific error 1 (0x1), NET HELPMSG 3547 
         -- the first time this happened, I immediately opened the OEM for rman and it was successful
              It was also fortunate in that we were doing some power upgrades and all of our systems were shutdown - and after this system was powered on, the production OEM worked fine.
         -- a few weeks later, the prod OEM was not accessible - giving the same 3547 error.  We were not able to shut down, so I stopped the Windows services for this instance, and stopped
                   the windows listener services for both instances.  I then started only the production windows services, and was able to use the prod OEM.  Then I started the listener service for
                   the rman and all was well.
         -- this Monday (today is Thurs), the prod OEM was inaccessible again and I tried the stopping and restarting of the services and started seeing 7024 errors.  I tested the rman OEM and
              it was fine.  I stopped both instances via sqlplus commands, used emctl to stop both dbconsoles (of course, the prod one was already not running), shut down the ASM instance and
              then stopped all the Windows services.  then I only brought up the prod services and confirmed with sqlplus commands that everything was started - but the final service, dbconsole
              would not start.  This morning I was able to reboot the server (after shutting down all the Oracle services) and now I can access the prod and the rman OEMs.
    2.  What the heck?   Because I can get the prod OEM working with just a reboot, I don't know if I should have to rebuild dbconsole.   And since I'm the only one disuncombullated because
              of the prod OEM, it is not a fall-down-crying situation - I'm actually a sqlplus kinda guy, but when I'm just doing visual maintenance, it is nice to view OEM remotely for a quick check.
    3.  I've been working with Linux systems and Oracle for many years and I've never experienced this kind of problem.   Oh, and since it is a closed system, it will be when pigs sprout wings
                   and start flyng that I'll be allowed to install patches - but again, if a reboot 'fixes' this issue, what the heck?  Oh, finally, I don't believe in the common windows fix of rebooting - I'd
                   like to find out WHY this is happening and literally fix it.  
    ANYBODY have a clue?   Not me...
    Thanks for your time.

  • Error running universall installer using Oracle 11g on Windows server 2003

    Hi,
    I want to uninstall Oracle 11g on Windows server 2003 and when I run universall installer I receive the following error
    Checking swap space: 0 MB available, 500 MB required.
    Please advise how to resolve this error and the procedure to uninstall Oracle 11g on Windows server 2003
    Thanks,
    Ant

    Hi;
    For swap problem, please check:
    Swap space problem on Windows XP
    http://www.pcnineoneone.com/howto/swpfile1.html
    For remove process please check:
    Oracle 11g on Windows Srv 2003
    WIN: Manually Removing all Oracle Components on Microsoft Windows Platforms [ID 124353.1]
    Regard
    Helios

Maybe you are looking for

  • Help needed to access Oracle from Applet.

    Please help. I have spent days reading info on the web and I simply cannot access to Oracle from an applet to work. Oracle is on a different IP than the Web Server. For my testing I am running the html directly from my local file system. Here are the

  • How to open CD that fails to autostart

    Hi. The PC/Mac software that came with my new camera won't autostart on my Mac and I don't know how to start it off the CD. thanks

  • Survice providers

    Send setting

  • Print scaleType:showAll, generates 2 pages, the correct page and one blank page

    Hello, So I have a the following function: private function printJobCreator():void{ var printJob:FlexPrintJob=new FlexPrintJob(); printJob.start(); printJob.addObject(printableInvoice, "showAll"); printJob.send();  invoiceIndex++; printAll(); It seem

  • AUDIO PROBLEMS when exporting to tape

    Hi! ADOBE PRO CS4 on VISTA. a)  Produced my film on timeline and there everything is perfect. Audio and video are fully synchronised. However: when I export to tape, playing the exportresult, audio comes about 10 seconds later then the corresponding