Admin 2 Windows domains on an Linux platform (tmadmin)

The configuration we have adopted is the following:
Tuxedo on a Linux platform which administrate different Tuxedo domains
Linux
Tuxedo Admin
Gateway
Win/2K Win/2K
Tuxedo Tuxedo
Appli1 Applic 2
All seems to be in order, except that on the admin platform, in a tmadmin session
we have as prog name field the full name of the executable.
Is it a procedure to obtain only the filename of the executable (cf. basename
in unix) ?
Thanks in advance for your reply.
Regards,
Philippe

jemar98 wrote:
We are using Developer suite 10.1.2.3 on an XP platform to develops Forms & Reports to be deployed on our Oracle E-Business Suite 12.1.3 environment.
The Operating system on the PC has now been upgraded from XP to Windows7. What is the certified version of the Developer Suite (Forms & Reports) on a Windows 7 64-bit PC ?
Edited by: jemar98 on Jan 3, 2013 6:06 PMPlease see these docs.
Certification of Oracle Developer Suite 10g (10.1.2) on Windows 7 (32-bit) [ID 1292919.1]
Forms / Reports Builder Certification on MS Windows 7 [ID 1112213.1]
How to Install Developer Suite 10.1.2.3 on Windows Vista or Windows 7 (32bit) [ID 559067.1]
Thanks,
Hussein

Similar Messages

  • Brute force on admin account - Windows Domain

    Hello,
    I have seen a rise of attempts to brute force our Administrator account on a awindows domain. I have in place, a Cisco ASA5505 w/ IPS sensor. I'd like to use the IPS sensor to automatically block IP's that brute force after x failed login attempts.
    Question is, is there a signature present (we auto update and are current) which will detect this and, what do we need to do to enable / configure this to kill the connection and deny further attempts.
    THIS is what I need to stop: We are getting a few hundred a day.
    Logon Failure:
           Reason:            Unknown user name or bad password
           User Name:      administrator
           Domain:            xxx
           Logon Type:      10
           Logon Process:      User32 
           Authentication Package:      Negotiate
           Workstation Name:      xxx
           Caller User Name:      xxx
           Caller Domain:      xxx
           Caller Logon ID:      (0x0,0x3E7)
           Caller Process ID:      8728
           Transited Services:      -
           Source Network Address:      213.171.220.184
           Source Port:      9674

    Hello
    To my knowledge there is no such signature,you need to create a custom signature to achive this.
    If you have Cisco MARS; you can pull these events directly in MARS and create a regex rule for the same. Add email notification to this rule as usual to ensure alerting as desired.  Windows events can either be pulled  by MARS or can be pushed using the Snare agent.
    Please see this link for more details:
    http://www.cisco.com/en/US/docs/security/security_management/cs-mars/6.0/device/configuration/guide/cfgHost.html#wp718623
    Regards
    Farrukh

  • Windows Domain - Joining of Ubuntu Systems

    Dear Team,
    Now i would like to joing my ubuntu systems in the domain, and also to apply the group policy to give access for wifi connectivity.
    Server : 2008 R2, client : ubuntu 12.04 (wifi network).
    Regards, Ravi Kumar

    Hi,
    Thanks for your post.
    You could add ubuntu machine to windows domain, please refer to the following article:
    How to join a Ubuntu machine to a Windows domain
    http://www.linux.com/learn/tutorials/336477:how-to-join-a-ubuntu-machine-to-a-windows-domain
    Regards.
    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 Support, contact [email protected]

  • Use Linux server NAT gateway for Windows domain?

    Well, I'm kinda new to this...
    I don't have a hardware router appliance, and I am short on Windows licences, so I figured that a Linux box would make a cheap NAT router (and firewall). I remembered that Linux generally can supply DNS & DHCP out of the box - but come to think of it, they are both optional.
    I didn't stop to think that the DHCP could be on the windows domain controller, but I guess it would make excellent sense to keep AD & DNS & DHCP all together on one DC... the linux box would just become a 'router appliance', nothing more.
    The second DC just DNS and AD, no DHCP - and both of them ( andall clients) pointing to the inside IP of the Linux box as the gateway. 
    Thanks very much for all the suggestions, I think I'm on track now :-)

    We're short on machines and I want to set up a lab network.
    I have a 2008R2 and a 2008Standard that I want to use as domain controllers (R2 as 'primary', so to speak).
    I understand its bad practice to make DC's multi-homed, but need to set up an internet gateway to my lab network - and I was wondering if it's possible to use a handy Linux box (Centos 6) as the NAT gateway & DHCP. (Using the Linux box as an Internet gateway for my Windows domain)
    Has anybody ever done this successfully? I guess the trick would be getting DNS updates passed to the Windows NS from the Linux DHCP server??
    This topic first appeared in the Spiceworks Community

  • Get Users windows Domain name

    Hi,
    Is it possible to retrieve users windows Domain directly using Java or there is any other alternative to retrieve this.
    Regards,
    Manda

    warnerja wrote:
    And rightfully so. What do you suppose a platform-independent language like Java should report as the "Windows Domain" when the app is run on Linux or Mac, for example?
    You should not "need" to know the user's "Windows Domain". If you think you need to know this, you are highly likely developing something backwards, or are using the wrong tool for the job.I'm sorry, but this is a dumb answer to a real question. Real world applications almost ALWAYS need access to system level functionality. When it comes to security domain related applications or services, any application or service that doesn't need this information is not worth having. We write in Java for portability, but when we need to access system-level information, we use JNI calls to do so. Java bigots tend to think the only operating system is the JVM, but real world engineers know that the JVM is only a means to an end -- portability and clean code.
    This problem can be solved by using the JAAS com.sun.security.auth.module.NTSystem and com.sun.security.auth.module.UnixSystem classes. It should be noted that Sun recommends against using these classes directly, but in the same act, they don't expose the functionality they provide though the public JAAS interfaces either (which leads one to wonder why they even exist, because they're not used in lower-level JAAS code either, as far as I can tell).
    I can only guess that Sun provided them in JAAS because people have screamed for them, and JAAS seemed like the most appropriate place to provide them. At the same time, Sun (unrealistically) doesn't like to believe that anything beyond the JVM is needed in an application or service, so they don't provide any "use" documentation for them either in the class javadoc.
    Some caveats regarding these classes: Each of these classes is only available on the system for which they are intended by default. That is, you won't find a jaas_nt.dll on any Unix system JVM, and you won't find a jaas_unix.so native library on NT. Thus, to write portable code (at least to Windows and various Unix variants), you need to use reflection to access them. Fortunately, the methods of these classes are trivial, returning strings or longs.
    Good luck!

  • Running a perl shell command through a java program on linux platform

    i'm trying to execute the following command in a java program "perl xxx.pl" using the runtime.getruntime method
    here is the piece of code
    String[] cmd={"perl","-c","AraMorph.pl",""};
    Process p = Runtime.getRuntime().exec(cmd,null,new File("/home/ahmed/buckwalter_morphan_1/data"));
    p.waitFor();
    BufferedReader in=new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while ((line=in.readLine())!=null)
    System.out.println(line);
    but it doesn't output anything even if i tried to print the output to a file
    i'm trying to execute this program on linux platform but its working properly on a windows platform
    thx
    raar

    String[] cmd={"perl","AraMorph.pl"," </home/ahmed/in.txt"," >/home/ahmed/ast.txt"};
    Process p = Runtime.getRuntime().exec(cmd,null,new File("/home/ahmed/buckwalter_morphan_1/data"));
    BufferedReader in=new BufferedReader(new InputStreamReader(p.getErrorStream()));
    String line;
    while ((line=in.readLine())!=null)
    System.out.println(line);
    p.waitFor();
    String str2=p.getInputStream().toString();
    System.out.println("==================================="+str2);
    and it still outputs nothing but goes in something like infinite loop or as assumed in the article u suggested a deadlock but even all solutions to all pitfalls didn't succeed

  • Problem with a Mac in a windows domain

    Hello, we have 1 user in our Windows domain that uses a mac. He has access to a shared drive on a file server, and has all possible permissions. The problem is that he cannot delete or rename files created by others, while he should be able to since he has the rights to do it. Is there a way to fix that?

    Are you sharing it out for him as AFP via File and PRint Services for Macintosh?
    If so if you go to the main server admin console and click on shares. Then click on the afp share (youll notice it has liek a little network box on the folder instead of the hand) and got to porperties, near the bottom of the window there is a check box that makes the volume read only. Remove the check and apply/ok out and have him reconnect.
    If youre using SMB try to connect form his mac as an administrator and see if you have the same problem.

  • ISE and authenticating against Windows AD with RADIUS realm that is different from the Windows domain

    Hello
    We are in the process of evaluating the Cisco ISE VMWare appliance with a view to replace our existing FreeRADIUS installation as authentication provider for our wireless network and VPN service. As a part of this we are hoping to migrate our user authentication to Microsoft Active Directory - we have previously authenticated against a different identity store (not MS AD).  Because of this legacy our Windows domain is not the same as our RADIUS realm name - the Windows domain is "win.mydomain" whereas we wish to allow users to authenticate using "username@mydomain" or even "[email protected]" as they are doing today. We are experiencing an issue where authentication requests with the format "[email protected]" will be forwarded to the Windows AD whereas authentication requests with the format "username@mydomain" will fail with the log message "User not found in Active Directory". We do not know if the ISE itself is validating the username and triggering this error, or if the error originates from AD. We suspect the that the ISE is not even asking AD because "win.mydomain" is the domain configured in "Active Directory" in "External Identity Sources".
    Authentication requests against the AD without a realm are successful (that is, using only "username"). With this in mind we located a post on the Cisco support forums that described a process of proxying the request back to the ISE and strip the realm information, but this was specific for the ACS platform. We have attempted to implement this solution but it is still not working as we would have hoped, and we are not entirely certain where the fault might lie. We are currently using PEAP with MSCHAPv2 for authentication in our WLAN where the main problem is. We suspect that the "proxy-to-self" with realm stripping is an issue with PEAP.
    Is there a supported method of achieving our goal, or should we abandon the ISE platform as our scenario is simply not supported?

    Seems like your issue maybe related to DNS, when ISE receives the format [email protected], the dns request is failing. However, there is a setting for alternate UPN Suffixes that can be configured to include domain.com and student.domain.com.
    Here is a windows article that should fix this for you. Once you get this updated please reboot ISE so it rejoins AD. Try your tests again.
    http://technet.microsoft.com/en-us/library/cc772007.aspx
    Thanks,
    Tarik Admani
    *Please rate helpful posts*

  • DAC 10.1.3.4.1 Server on Windows (64 bit) and Linux x86 (64 bit)?

    Hi Friends,
    Please confirm wheteher Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 Server is supported on
    Windows (64 bit) and Linux x86 (64 bit)
    Because from edelivery.oracle.com i could see the downloads only for windows and Linux and not specified as 32/64 - bit
    so will it mean that the same dump is used for both 32 and 64 bit
    1) Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows (V16377-01)
    can the above dump is used for both 32 and 64 bit windows?
    2) Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Linux x86 (V16378-01)
    can the above dump is used for both 32 and 64 bit Linux?
    The reason is because for OBIA 7.9.6.3 configuration both the Informatica Power Centre and DAC Server should co-exist
    and i could see seperate installer for 32 and 64 bit for both Windows and Linux whereas i couldn't see it for DAC Server
    Please confirm .
    Regards,
    DB

    It is supported on both platforms. With Linux however, if you have any issues you can to install in a windows environment, then copy over the folder structure. Also, you can possibly run into issues running the setup.exe on 64bit windows. When you open the install directory, go to dac/disk1/install and run the executable for win32. win64bit can return an error where it says it cannot create certain temp directories. It is a known java bug you can find in the support website.
    Edited by: user12838563 on Jul 13, 2011 11:35 PM

  • Non admin in a domain environment

    hi
    i have installed cs6 for my users who are on my windows domain using windows 7 (x64) pc's - the problem we're having is that they need to run the updater to get the latest RAW file compatability etc but can't as they're not administrators.
    i don't really want to give the admin accounts on the pc's / domain so does anyone have any suggestions?!!
    thanks.
    Elliott

    Group policies, possibly in combination with file permissions. You could just create a special user group and limit it to certain operations whiel allowing others. You will need to give your users some form of admin access, no matter what. Installs always require registry and file access to the oeprating system. also you could run such stuff via a startup script that runs the isntall via silent deployment and/or creates a dummy user only to delete it afterward...
    Mylenium

  • Couldn't view the JMC startup menus on linux platforms

    Hi Team,
    We are trying to invoke jmc 5.2 locally on a Linux platform having RHEL 64-bit server edition.
    2.6.18-238.9.1.el5 #1 SMP Fri Mar 18 12:42:39 EDT 2011 x86_64 x86_64 x86_64.
    To view the GUI on rhel server edition we installed the respective packages necessary for X server.
    We also verified whether are we able to view any gui app for example xclock. Everything went well.
    But when we tried to invoke jmc we could see the jmx browser without any of the menu titles. We could see only boxes not the menu title.
    JDK version used : /tmp/jdk1.7.0_45/bin
    [Not able to insert a image]
    Could you please help us.
    Thanks
    Sattish.

    Hi Hernandez,
    Thanks for your inputs. Have listed the complete debug message while starting jmc on linux.
    ./jmc -debug
    Start VM: /opt/oracle/jdk1.7.0_45/bin//./java
    -XX:+UseG1GC
    -XX:+UnlockCommercialFeatures
    -XX:+FlightRecorder
    -Djava.net.preferIPv4Stack=true
    -jar /opt/oracle/jdk1.7.0_45/bin//../lib/missioncontrol/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
    -os linux
    -ws gtk
    -arch x86_64
    -showsplash
    -launcher /opt/oracle/jdk1.7.0_45/bin/jmc
    -name Jmc
    --launcher.library /opt/oracle/jdk1.7.0_45/bin//../lib/missioncontrol/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so
    -startup /opt/oracle/jdk1.7.0_45/bin//../lib/missioncontrol/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
    --launcher.overrideVmargs
    -exitdata 17900a1
    -debug
    -vm /opt/oracle/jdk1.7.0_45/bin//./java
    -vmargs
    -XX:+UseG1GC
    -XX:+UnlockCommercialFeatures
    -XX:+FlightRecorder
    -Djava.net.preferIPv4Stack=true
    -jar /opt/oracle/jdk1.7.0_45/bin//../lib/missioncontrol/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
    Install location:
        file:/opt/oracle/jdk1.7.0_45/lib/missioncontrol/
    Configuration file:
        file:/opt/oracle/jdk1.7.0_45/lib/missioncontrol/configuration/config.ini loaded
    Configuration location:
        file:/opt/oracle/jdk1.7.0_45/lib/missioncontrol/configuration/
    Framework located:
        file:/opt/oracle/jdk1.7.0_45/lib/missioncontrol/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
    Framework classpath:
        file:/opt/oracle/jdk1.7.0_45/lib/missioncontrol/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
    Splash location:
        /opt/oracle/jdk1.7.0_45/lib/missioncontrol/configuration/org.eclipse.equinox.launcher/com.jrockit.mc.rcp.application_5.2.0.157284/splash.bmp
    Debug options:
        file:/opt/oracle/jdk1.7.0_45/bin/.options not found
    Time to load bundles: 7
    Starting application: 23907
    Dec 06, 2013 3:00:13 AM com.jrockit.mc.rcp.application.ApplicationPlugin initializeDebug
    INFO: JMC debug mode enabled
    Dec 06, 2013 3:00:13 AM com.jrockit.mc.rcp.logging.LoggingToolkit initializeLogging
    INFO: Debug settings enabled - loaded debug settings for the logger from logging_debug.properties.
    Dec 06, 2013 3:00:14 AM com.jrockit.mc.rcp.logging.LoggingToolkit initializeLogging
    FINE: Logger initialized
    Dec 06, 2013 3:00:14 AM com.jrockit.mc.jdp.client.Pruner run
    FINE: JDP prune thread started!
    Dec 06, 2013 3:00:14 AM com.jrockit.mc.rcp.application.ApplicationPlugin start
    FINE: Initializing com.jrockit.mc.console.ui to register open handler for DND.
    Dec 06, 2013 3:00:14 AM com.jrockit.mc.rcp.application.p2.UpdateSiteURLToolkit isOnOracleNetwork
    INFO: Could not find interface on Oracle internal network. Oracle internal update site disabled.
    Dec 06, 2013 3:00:15 AM com.jrockit.mc.rcp.application.p2.UpdateSiteURLToolkit isOnOracleNetwork
    INFO: Could not find interface on Oracle internal network. Oracle internal update site disabled.
    Dec 06, 2013 3:00:20 AM com.jrockit.mc.common.mbean.LocalMBeanToolkit <clinit>
    FINE: Acquired local PID. PID resolved to 26343
    Dec 06, 2013 3:00:20 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 21924
    Dec 06, 2013 3:00:20 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 26343
    Dec 06, 2013 3:00:25 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 29768
    Dec 06, 2013 3:00:31 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 31451
    Dec 06, 2013 3:00:36 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 31839
    Dec 06, 2013 3:00:36 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 29066
    Dec 06, 2013 3:00:41 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 2177
    Dec 06, 2013 3:00:47 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 27120
    Dec 06, 2013 3:00:52 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 31443
    Dec 06, 2013 3:00:57 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 15316
    Dec 06, 2013 3:01:02 AM com.jrockit.mc.browser.attach.LocalJVMToolkit populateAttachableVMs
    INFO: Done resolving PID 31205
    Dec 06, 2013 3:01:03 AM com.jrockit.mc.ui.misc.SwingSupport initLookAndFeel
    INFO: Initializing Swing L&F!
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setupModifierMap
    FINE: In setupModifierMap
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setupModifierMap
    FINE: metaMask = 0
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setupModifierMap
    FINE: altMask = 8
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setupModifierMap
    FINE: numLockMask = 16
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setupModifierMap
    FINE: modeSwitchMask = 128
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setupModifierMap
    FINE: modLockIsShiftLock = 0
    Dec 06, 2013 3:01:24 AM sun.awt.X11.XToolkit setBackingStoreType
    CONFIG: The system property sun.awt.backingStore is not set, by default backingStore=NotUseful
    Dec 06, 2013 3:01:30 AM sun.awt.X11.XWM <init>
    FINE: Window manager: NO WM
    Dec 06, 2013 3:01:30 AM com.jrockit.mc.ui.misc.SwingSupport initLookAndFeel
    INFO: System Swing L&F is javax.swing.plaf.metal.MetalLookAndFeel
    Dec 06, 2013 3:01:30 AM com.jrockit.mc.ui.misc.SwingSupport initLookAndFeel
    INFO: Setting L&F to javax.swing.plaf.metal.MetalLookAndFeel
    Dec 06, 2013 3:01:33 AM sun.awt.X11.XAWTXSettings initXSettings
    FINE: Initializing XAWT XSettings
    Dec 06, 2013 3:01:35 AM sun.awt.X11.XMSelection selectPerScreen
    FINE: Grabbing XServer
    Dec 06, 2013 3:01:35 AM sun.awt.X11.XMSelection selectPerScreen
    FINE: Screen = 0 selection name = _XSETTINGS_S0
    Dec 06, 2013 3:01:35 AM sun.awt.X11.XMSelection selectPerScreen
    FINE: UnGrabbing XServer
    Dec 06, 2013 3:01:35 AM sun.awt.X11.XAWTXSettings initPerScreenXSettings
    FINE: Updating Per XSettings changes
    Dec 06, 2013 3:01:35 AM sun.awt.X11.XAWTXSettings getUpdatedSettings
    FINE: owner =0
    Dec 06, 2013 3:03:04 AM com.jrockit.mc.ui.misc.SwingSupport initLookAndFeel
    INFO: Initializing Swing L&F!
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: General org.eclipse.ui.preferencePages.Workbench
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Security org.eclipse.equinox.security.ui.category
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor removePrefsPage
    INFO: Removed preference page Security (ID:org.eclipse.equinox.security.ui.category)
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Network Connections org.eclipse.ui.net.NetPreferences
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Java Mission Control com.jrockit.mc.ui.preferences.MissionControlPage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: JVM Browser com.jrockit.mc.browser.preferences.BrowserPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Local com.jrockit.mc.browser.attach.preferences.AttachPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: JDP com.jrockit.mc.browser.jdp.preferences.JDPPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: JMX Console com.jrockit.mc.console.ui.preferences.GeneralPage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Persistence com.jrockit.mc.console.ui.preferences.PersistencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Communication com.jrockit.mc.console.ui.preferences.CommunicationPage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: MBean Browser com.jrockit.mc.console.ui.preferences.MBeanBrowserPage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Flight Recorder com.jrockit.mc.flightrecorder.ui.main.preference.page
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: JMXRMI com.jrockit.mc.rjmx.ui.preferences.JMXRMIPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Install/Update org.eclipse.equinox.internal.p2.ui.sdk.ProvisioningPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Available Software Sites org.eclipse.equinox.internal.p2.ui.sdk.SitesPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Automatic Updates org.eclipse.equinox.internal.p2.ui.sdk.scheduler.AutomaticUpdatesPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Help org.eclipse.help.ui.browsersPreferencePage
    Dec 06, 2013 3:05:22 AM com.jrockit.mc.rcp.application.ApplicationWorkbenchWindowAdvisor logPrefsNode
    FINE: Prefs node: Content org.eclipse.help.ui.contentPreferencePage
    Application Started: 344013
    Please review and let me know for further details
    Thanks
    Sattish.

  • Windows domain password expired

    Macbook Pro, bound to Windows domain, running 10.7.5
    This one user's domain password expired.  Now, she can't log into the Mac with her new password.  That's all.
    I'm a Windows admin, but I'm fairly competent in supporting OSX.  I'm hoping there's a very easy fix to sync their current password with the domain controller.  For my first trick, I've tried plugging her into the wired network until the red dot goes away and network accounts are "available".  Didn't work.  Unbind, re-bind to domain didn't help either.  Other AD accounts can log into this Macbook with their current passwords (for example: I haven't logged in in over 90 days, our default password expiration period, and I could get in just fine AND I was prompted to update my keychain password)
    Side note:  I was hoping to find the equivalent of a "gpupdate /force" for OSX, but that seems to be hard to find.
    What other information is needed?
    Thanks!

    Hi, did you manage to solve this?
    I have a similar issue:
    - Suddenly, more than one week ago, I could not unlock my Mac, hence I believed that my domain password had exipred
    - By using Outlook Web Access I logged in with the old password, which made me realise that the password wasn't expired after all
    - I thought it was useful to change the password anyway, and I did that using OWA
    - I got back to the Mac and realised that I could not login with neither the old and new passwords!
    - I forced reboot the Mac, and now I can login only with the *old* password, the one that stopped working!
    Since then, I need to use the old password on the Mac and the new on all other network resources associated to the domain. All of this happened while in my office, so no networking complications. I have spent time with the Mac still on the same network but the new password never got 'propagated' to it since. 
    G.

  • Windows Domain login and timer

    We are binding several Macs to the windows domain here.  That really hasnt been an issue, we used Centrify Express, and that went fine.  Users can log into the domain no problem.  All the Macs were built with a service account (UID svc-account) similar to an admin account on windows.  Any user can sit down at a Mac and if they enter good domain credentials they get logged in.
    But when a mac is first powered on, and gets to the login screen, the svc-account is first presented, then after about 10 sec, a little arrow appears.  by clicking on the arrow, you can choose "other user" and log in with domain credentials.  Is there a way to shorten this timer, or default to "other user", or default to any domain user account?

    We are binding several Macs to the windows domain here.  That really hasnt been an issue, we used Centrify Express, and that went fine.  Users can log into the domain no problem.  All the Macs were built with a service account (UID svc-account) similar to an admin account on windows.  Any user can sit down at a Mac and if they enter good domain credentials they get logged in.
    But when a mac is first powered on, and gets to the login screen, the svc-account is first presented, then after about 10 sec, a little arrow appears.  by clicking on the arrow, you can choose "other user" and log in with domain credentials.  Is there a way to shorten this timer, or default to "other user", or default to any domain user account?

  • Is it possible to run a Windows domain with a Mac Server?

    Looking for some advice on getting rid of our Windows domain controller (DHCP server, AD, etc.) in favour of a Mac Server (which we own).  Is it possible to run a Windows domain with a Mac Server?

    Snow Leopard Server (10.6) and earlier included Samba which supported acting as an NT Domain Controller (this pre-dates Active Directory). Lion (10.7) and later as standard can no longer act as an NT Domain Controller nor can they act as an Active Directory server.
    So the short answer is no.
    Theoretically you could port Samba4 to a Mac and Samba4 can act as an Active Directory server. In reality this is not going to be easy but is theoretically possible.
    An easier option might be to run a copy of Linux (e.g. Ubuntu) in a virtual machine e.g. using VirtualBox and then run Samba4 in that and configure it to act as and Active Directory server. Then you could connect the Mac side to the Samba4 Active Directory server. This approach would use all Mac hardware, and not have any extra costs of licenses to buy and as far as all the rest of the network is concerned would be a standard Active Directory server environment.

  • Using labview version 8 can application.exe be created for linux platform?

    hi
    Good morning..
    I have been creating GUI for windows platform using Labview version 8.
    Is it possible to create application.exe for linux platform...are there any settings that could be changed to make it work on linux platform ? or it will directly work when installer is installed in linux platform...
    waiting in anticipation...
    Thanx  ....
    Regards
    yogan

    You must setup a machine with Linux and install LabVIEW for Linux on this machine.
    If you haven't used any Windows technics you can copy the VIs from the Windows machine to the Linux machine, open LabVIEW on the Linux machine and create the application.
    There is no setting on any platform of LabVIEW to generate applications and/or installers for other platforms.
    Message Edited by waldemar.hersacher on 08-05-2008 08:22 AM
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

Maybe you are looking for

  • Converting from Flashpaper2 to PDF fonts change

    I can convert my PageMake document to FlashPaper2 OK but when I then Save As PDF some of the fonts appear in italics. Any ideas please. Thanks

  • What to add on?

    I am ready to purchase a MBA and do not want to overbuy unneeded add-ons.  I am retired and will use the computer only for the basics outside of a lot of writing.  What to add on and what to avoid?

  • Get Flash Player to work under Vista

    Using Internet Explorer, I am trying to get Flash Player 10 to work under Vista 32 bit. When I go to youtube.com, their greeting says "Hello, you either have JaveScript turned off or an old version of Adobe's Flash Player. Get the latest Flash player

  • Problem with minus-minus

    Hi, I need to move forwards and backwards through an array, the result of which in my program moves images clockwise or anti-clockwise around a disc. Clockwise is fine, but my anti-clockwise code makes my images move in strange ways. What am I doing

  • HT203175 Cannot download latest version of itunes.

    Hi All,         The message I get is as follows. There is a problem with the Windows Installer Package. A programme required for this install to complete could not be run. Contact your support personell or package vendor. I have neither!! Any ideas?