Cannot start web proxy 4.07 admin server

I just installed web proxy 4.06 on Solaris 9, but when I try to start admin server it just says:
% ./start
./start: test: argument expected
Any ideas how to fix this?

how do i fix the problemIIRC, in your domain's config directory, look for domain.xml. It contains the configuration, which you may modify (after checking the documentation).
x

Similar Messages

  • Script to start/stop all manager sever/Admin server

    Hi Gurus,
    I am new bee to weblogic and learning it on daily basic.
    I have a scenario and would like to see if this is possible.
    We have one server and have couple of applications are running like SOA,OSB, OSR etc. During any downtime, we have to shut down each Admin Server, Manage server one by one and take up. This take time and effort too.
    Do we have some options through which we can configure all start/stop script in one file and do this work with few clicks. server shout down should be clean and take care of node manager recycle also.
    Could you please advise me on this or pls point me towards some already documented solution. I goggled this but did not find.

    Thanks radoui for your response.
    I see this approach as the default one.. Could you please advice me whats the correct sequence of shutting down the servers including node manager and starting back.
    Like I have SOA installed.
    So First I have to take down SOA managed server followed by Admin server and then node manager ..? Let me know if this is not correct.
    I still have doubt on this approach as if, managed server failed to stop and means while script will take down admin server and so on..

  • Clustered enviroments -Starting/Stopping Managed servers, NodeManager & Admin server from single node

    Hi,
    We have 5 node Weblogic cluster. At the time of some mass activities like patching we have to stop all our managed, Admin Servers and node manager and it takes a lot of time to do this by logging in to all 5 managed servers and stopping all components. Though we have node manager configured so we can stop managed servers from console itself, but still have to login to each server to stop NodeManager and Oracle Http Servers.
    Things become worse when wee have to shutdown almost 15-20 instances.
    Is there a way (using wlst or shell script) that we can do all these tasks from by logging in to just one server?
    Thanks,
    Suraj

    The simple code below would shutdown all the running Servers. Some of the APIs for ex MBeanHome are deprecated..still work though..if your concerned about that..I am working on the same using JMX API..if you want I could share that too. And also as described in the below link..you can Cluster stop and start using WLST commands.  Managing the Server Life Cycle - 12c Release 1 (12.1.1)
    <This code is from Oracle Weblogic documentation>
    import java.util.Set;
    import java.util.Iterator;
    import java.rmi.RemoteException;
    import javax.naming.Context;
    import javax.management.ObjectName;
    import java.io.*;
    import java.net.*;
    import weblogic.jndi.Environment;
    import weblogic.management.MBeanHome;
    import weblogic.management.WebLogicMBean;
    import weblogic.management.configuration.ServerMBean;
    import weblogic.management.runtime.ServerRuntimeMBean;
    import weblogic.management.runtime.ServerStates;
    import weblogic.management.WebLogicObjectName;
    public class ServerStopper {
      public static void stop() throws Exception {
        MBeanHome home = null;
        //url of the Admin server
        String url = "t3://localhost:7001";
        String username = "weblogic";
        String password = "welcome1";
        ServerRuntimeMBean serverRuntime = null;
        Set mbeanSet = null;
        Iterator mbeanIterator = null;
        try {
          // Set ContextClassloader to prevent assertions
          URL[] urls = { new File("/").toURL() };
          Thread.currentThread().setContextClassLoader(new
             URLClassLoader(urls));
          Environment env = new Environment();
          env.setProviderUrl(url);
          env.setSecurityPrincipal(username);
          env.setSecurityCredentials(password);
          Context ctx = env.getInitialContext();
          home = (MBeanHome)
               ctx.lookup("weblogic.management.adminhome");
          mbeanSet = home.getMBeansByType("ServerRuntime");
          mbeanIterator = mbeanSet.iterator();
          while(mbeanIterator.hasNext()) {
            serverRuntime = (ServerRuntimeMBean)mbeanIterator.next();
            if(serverRuntime.getState().equals(ServerStates.RUNNING)){
                serverRuntime.shutdown();
        } catch (Exception e) {
          e.printStackTrace();

  • Need to write start up scrits for weblogic admin server on Linux

    Hi,
    I am new to weblogic i have Installed wls1035 on Linux Created Managed servers,but i want write start up and stop scripts for weblogic admin server please let me know how to write.
    My weblogic server is Running on Linux..please help me its very urgent for me.....

    Put something like this into a startAll.py file (excluding the ---):
    startNodeManager(verbose='false',NodeManagerHome=localWlsHome + '/common/nodemanager',ListenPort=5556,ListenAddress=localhost)
    nmConnect('weblogic','password','localhost','5556','domain_name')
    nmStart('AdminServer','/path-to-domain-dir')     
    nmStart('my_server_1','/path-to-domain-dir')     
    nmStart('my_server_2','/path-to-domain-dir')     
    nmDisconnect()
    exit()
    source /path-to-domain-dir/bin/setDomainEnv.sh
    $JAVA_HOME/bin/java weblogic.WLST startAll.py
    Similar for stop (stopAll.py):
    nmConnect('weblogic','password','localhost','5556','domain_name')
    nmKill('my_server_1')     
    nmKill('my_server_2')     
    nmKill('AdminServer')
    stopNodeManager()
    exit()
    source /path-to-domain-dir/bin/setDomainEnv.sh
    $JAVA_HOME/bin/java weblogic.WLST stopAll.py
    You might have issues with the Nodemanager having an autogenerated username and password. That can be fixed like this:
    In the AdminServer console, click on Lock & Edit
    In the AdminServer console, go to <domain> -> Security -> General -> Advanced and update the Node Manager username and password to use the same values as the WebLogic server.
    In the AdminServer console, apply the changes.
    Start WLST: $WL_HOME/common/bin/wlst.sh
    Connect to the AdminServer: connect('weblogic','password','t3://<adminserver-hostname>:<adminserver-port>')
    Enroll: nmEnroll('/path-to-domain-dir')
    Exit WLST: CTRL^D
    You might also look into customizing the nodemanager's property file:
    Edit $WL_HOME/common/nodemanager/nodemanager.properties
    StopScriptEnabled=true
    CrashRecoveryEnabled=true
    StartScriptEnabled=true
    For further reading, please take a look at: http://docs.oracle.com/cd/E15051_01/wls/docs103/config_scripting/reference.html
    Edited by: 925121 on Apr 3, 2012 2:16 AM

  • How to start oracle Jdeveloper 11g Weblogic Admin Server

    Hi Every one
    Can any one help me in starting the Oracle Jdeveloper 11g weblogic admin server. There is option to start the admin server while configuring the new domain, but after that if we need to start the same domain I didn't find any option in 11g. Can any one help me in this regard
    Thanks

    Janilson wrote:
    I don't know which oracle version you are using but, I use the Express version (Oracle-xe)
    In order to configure it I run
    sudo /etc/rc.d/oracle-xe configure
    After configure oracle, I start oracle service
    sudo /etc/rc.d/oracle-xe start
    I don't know if it helps sad
    I don't see any thing in rc.d. I use systemctl to start daemons.
    stee1rat wrote:What command do you use to run it? And what are your environment variables?
    lsnrctl start

  • Cannot start web server on executable

    Hi
    We have an interesting problem with a webserver - we cannot get it to initialise using property nodes or the ini file on a compiled executable.
    As part of our application we start the webserver to publish a status page to be viewed remotely. This works fine when we are running in the development environment and also when we are running an executable on a PC with the development environment installed, however it will not initialise on a PC with just the runtime engine installed.
    I've attached a portion of code which functionally does exactly the same as in our main application. I've been using this as my tester code and built it into an exe while trying many different things to fix it.
    When executed:
    The code will sit in the while loop until I press stop.
    Web server: Server Active = FALSE
    error out = NO ERROR
    In the full application the while loop waits for a couple of seconds before throwing an error if the server has not started. In this example I can leave the loop running for some time without it starting. Normally startup time is <50ms when succesful.
    This is the ini file for the executable:
    [WebTest]
    server.app.propertiesEnabled=True
    server.ole.enabled=True
    server.tcp.serviceName="My Computer/VI Server"
    server.vi.propertiesEnabled=True
    WebServer.Enabled=True
    WebServer.TcpAccess="+*"
    WebServer.ViAccess="+*"
    DebugServerEnabled=False
    DebugServerWaitOnLaunch=False
    And this is the webserver config file:
    ErrorLog "$LVSERVER_ROOT/logs/error.log"
    LogLevel 3
    ServerName default
    DocumentRoot "$LVSERVER_ROOT/../../www"
    Listen 8000
    ThreadLimit 10
    TypesConfig "$LVSERVER_ROOT/mime.types"
    DirectoryIndex index.html
    LoadModulePath "$LVSERVER_ROOT/modules" "$LVSERVER_ROOT/LVModules" "$LVSERVER_ROOT/.."
    LoadModule LVAuth lvauthmodule
    LoadModule LVSnapshot lvsnapshotmodule
    LoadModule LVRFP lvrfpmodule
    LoadModule dir libdirModule
    LoadModule copy libcopyModule
    AddHandler LVAuthHandler
    AddHandler LVSnapshotHandler .snap
    AddHandler LVRFPHandler
    AddHandler dirHandler
    AddHandler copyHandler
    CustomLog "$LVSERVER_ROOT/logs/access.log" "%h %l %u %t \"%r\" %>s %b"
    KeepAlive on
    KeepAliveTimeout 60
    Timeout 60
    As a side note, can anybody tell me where the $LVSERVER_ROOT variable is configured?
    Things I have tried:
    Copying a new config file from the default location before initialisation
    Writing a pre-defined (hard-coded) config file before initialisation
    Setting root directory locaitons before initialisation (this one actually throws an error because the server isn't active...)
    Setting WebServer.Active = TRUE repeatedly inside the while loop
    Enabled/disabled the web server in the ini file
    System:
    Labview 2010
    PC's with running Windows 7
    Thanks for any help because this is driving me slowly mad!
    Ben
    Solved!
    Go to Solution.

    Hi Marco, thanks for replying.
    I had looked at that guide previously and had done everything in it but one small section did give me a hint of something to try and I have solved my problem, so thanks!
    Here is the issue if anyone is interested:
    The DocumentRoot folder in the config has to exist otherwise the webserver cannot be started. So basically, make sure that the file points to a folder that exists!
    This does leave two slight annoying issues though - you can't see if the folder exists (and then create it) before starting the webserver because you can't query the folder path without the webserver running.
    AND
    You can't really set the config file programatically because the settings from the file are loaded on execution, not on webserver start.
    The result of this is that the config file and the document root folder should be created (and matching of course...) when the executable is built / installed on the system. Not a massive headache but it means remembering to put things into the build spec and not rely on the software to do the work on boot

  • Cannot start Web Cache in Oracle 10g App Server

    Hi,
    Our Application runs on Oracle10g App Server,
    When it tried to start WebCache using the command
    opmnctl startproc ias-component=WebCache process-type=WebCache
    it shows the error...
    opmn id=oracle10g:6200
    no enabled components for this request
    When i tried to enable WebCache using Enable/Disable Component in Oracle 10g Enterprise manager - I can't see WebCache component it to enabe or disable it.
    When i tried opmnctl status., it shows
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    HTTP_Server | HTTP_Server | 7276 | Alive
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    OC4J | home | 7684 | Alive
    OC4J | rhs | N/A | Down
    OC4J | instaremit | 5880 | Alive
    OC4J | insta_test_apr_02 | 7100 | Alive
    WebCache is not running, also as the WebCache is not listed in Oracle 10g Enterprise manager, i can' enable or disable it.
    Plz Help me over this.,
    Regards.,
    Deepak.C

    Hi.,
    Thanks again !!!
    Yes, My Oracle HTTP Server is listening on port 80.
    I am not clear, may i know why should the ports be changed for the request to go through Web Cache ???
    Can i assign port 80 for Web Cache and 7778 for HTTP Server ?
    Also In Oracle Enterprise Manager, Web Cache is not available...
    home, HTTP Server, management alll these are there...
    Also for HTTP Server, it's not showing any metric info, 'Not Yet Available' is shown even though the HTTP Server is running, how can i get metric info about Oracle HTTP Server, i have also used dmstool -t ohs_server, its not working
    It's showing... FLEXMON ERROR : detected invalid table name ohs_server
    dmstool -l -t also does'nt lists ohs_server
    Hellp me over this.....
    Deepak.C

  • Cannot Start Web Services

    Hi, I've simply rebooted our server last night and now everything starts but Web Services.
    Here are the last bits of the error.log and system.log for the past 36 hours:
    All help very welcome
    error.log
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/0000any_80localhost.conf
    Processing config file: /etc/httpd/sites/0001any_80personalcomment.com.conf
    Processing config file: /etc/httpd/sites/0002any_80jrpserver.co.uk.conf
    Processing config file: /etc/httpd/sites/0003any_80iphotoreference.com.conf
    Processing config file: /etc/httpd/sites/0004any_80jrpshop.co.uk.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Wed Jun 27 08:39:48 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 mod_perl/1.29 configured -- resuming normal operations
    [Wed Jun 27 08:39:48 2007] [notice] Accept mutex: flock (Default: flock)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16987)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16986)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16985)
    [Wed Jun 27 08:39:48 2007] [warn] long lost child came home! (pid 16984)
    [Wed Jun 27 08:40:32 2007] [notice] caught SIGTERM, shutting down
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/0000any_80localhost.conf
    Processing config file: /etc/httpd/sites/0001any_80personalcomment.com.conf
    Processing config file: /etc/httpd/sites/0002any_80jrpserver.co.uk.conf
    Processing config file: /etc/httpd/sites/0003any_80iphotoreference.com.conf
    Processing config file: /etc/httpd/sites/0004any_80jrpshop.co.uk.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Wed Jun 27 08:40:42 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 mod_perl/1.29 configured -- resuming normal operations
    [Wed Jun 27 08:40:42 2007] [notice] Accept mutex: flock (Default: flock)
    [Wed Jun 27 08:54:04 2007] [notice] child pid 17024 exit signal Bus error (10)
    [Wed Jun 27 08:54:12 2007] [notice] child pid 17032 exit signal Bus error (10)
    [Wed Jun 27 08:54:20 2007] [notice] child pid 17023 exit signal Bus error (10)
    [Fri Jun 29 16:56:18 2007] [notice] child pid 17034 exit signal Bus error (10)
    [Mon Jul 9 00:49:07 2007] [notice] child pid 17213 exit signal Bus error (10)
    [Mon Jul 9 21:10:05 2007] [notice] child pid 17234 exit signal Bus error (10)
    [Tue Jul 10 03:32:24 2007] [notice] child pid 17033 exit signal Bus error (10)
    [Wed Jul 18 18:01:19 2007] [notice] child pid 17211 exit signal Bus error (10)
    [Sun Jul 22 22:12:11 2007] [warn] child process 602 still did not exit, sending a SIGTERM
    [Sun Jul 22 22:12:16 2007] [notice] caught SIGTERM, shutting down
    [Mon Jul 23 08:20:27 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:26:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:29:22 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 10:32:18 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:02:18 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:08:14 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:10:47 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:12:59 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:15:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:17:19 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:20:21 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:25:54 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    [Mon Jul 23 14:28:40 2007] [alert] moduniqueid: unable to gethostbyname("data.jrpinhouse.com")
    system.log
    Jul 23 14:01:00 localhost mDNSResponder: Adding browse domain local.
    Jul 23 14:01:00 localhost kernel[0]: hfs mount: enabling extended security on File Server OS X BU
    Jul 23 14:01:00 localhost diskarbitrationd[71]: disk0s10 hfs 30AE8237-63C0-3E12-A66E-37DDF143A997 File Server OS X BU /Volumes/File Server OS X BU
    Jul 23 14:01:01 localhost kernel[0]: BMacEnet: Ethernet address 00:50:e4:6e:38:19
    Jul 23 14:01:04 localhost lookupd[144]: lookupd (version 369.5) starting - Mon Jul 23 14:01:04 2007
    Jul 23 14:01:05 localhost kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: verifying cyrus databases
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: skiplist: recovered /var/imap/mailboxes.db (13 records, 2528 bytes) in 0 seconds
    Jul 23 14:01:05 localhost ctl_cyrusdb[87]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jul 23 14:01:06 localhost kernel[0]: BMacEnet::monitorLinkStatus: Link up at 100 Mbps - Half Duplex
    Jul 23 14:01:06 localhost configd[68]: AppleTalk startup
    Jul 23 14:01:06 data configd[68]: setting hostname to "data.jrpinhouse.com"
    Jul 23 14:01:07 data java: Java is generating its shared archive, version 1.5
    Jul 23 14:01:07 data java: Java is generating its shared archive, version 1.5
    Jul 23 14:01:08 data launchd: Server 490f in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[144]: exited abnormally: Hangup
    Jul 23 14:01:08 data configd[68]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jul 23 14:01:08 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:01:08 data lookupd[149]: lookupd (version 369.5) starting - Mon Jul 23 14:01:08 2007
    Jul 23 14:01:15 data configd[68]: AppleTalk startup complete
    Jul 23 14:01:16 data kernel[0]: ATY,Rage128y: vram [86000000:01000000]
    Jul 23 14:01:21 data mountd[195]: /usr/sbin/slp_reg exit status 57
    Jul 23 14:01:24 data mountd[195]: path contains symlinks: /Volumes/Server NetBoot/Library/NetBoot/NetBootSP0
    Jul 23 14:01:24 data mountd[195]: Error processing exports list line: /Volumes/Server\ NetBoot/Library/NetBoot/NetBootSP0 -ro
    Jul 23 14:01:30 data configd[68]: target=enable-network: disabled
    Jul 23 14:01:31 data /usr/sbin/serialnumberd[293]: serialnumberd: Firewall rule #1 added to allow port 626.
    Jul 23 14:01:34 data ctl_cyrusdb[87]: done verifying cyrus databases
    Jul 23 14:01:40 data kernel[0]: nmbd[360] uses send/recv on a pipe
    Jul 23 14:01:40 data servermgrd: servermgr_dns: Reloaded named
    Jul 23 14:01:41 data servermgrd: servermgr_dns: configured name and reverse DNS name do not match (data.jrpinhouse.com != server.jrp.inhouse), various services may not function properly - use changeip to repair and/or correct DNS
    Jul 23 14:01:42 data master[63]: ready for work
    Jul 23 14:01:42 data ctl_cyrusdb[386]: checkpointing cyrus databases
    Jul 23 14:01:43 data ctl_cyrusdb[386]: done checkpointing cyrus databases
    Jul 23 14:01:56 data /usr/sbin/serveradmin: servermgr_ipfilter:ipfw config:Notice:Disabled firewall
    Jul 23 14:02:00 data /usr/sbin/AppleFileServer: TIME-CHECK: NSLXStandardRegisterService took 4.026076 seconds!\n
    Jul 23 14:02:03 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:natd launch requested
    Jul 23 14:02:04 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:nat divert rule for interface 'en0' added to firewall
    Jul 23 14:02:14 data ARDAgent [400]: ******ARDAgent Launched******
    Jul 23 14:02:15 data /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jul 23 14:02:17 data ARDAgent [400]: ******ARDAgent Ready******
    Jul 23 14:02:18 data ARDAgent [400]: call logout from LoginLogoutProxyCallBackFunction
    Jul 23 14:02:18 data kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:02:19 data loginwindow[399]: Login Window Started Security Agent
    Jul 23 14:02:25 data ARDAgent [418]: ******ARDAgent Launched******
    Jul 23 14:02:26 data ARDAgent [418]: ******ARDAgent Ready******
    Jul 23 14:08:14 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:10:47 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:12:43 data launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[149]: exited abnormally: Hangup
    Jul 23 14:12:43 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:12:44 data lookupd[599]: lookupd (version 369.5) starting - Mon Jul 23 14:12:44 2007
    Jul 23 14:12:59 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/lpr.log.2.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/httpd/error_log.1170288000.gz
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/xgrid
    Jul 23 14:14:05 data servermgrd: servermgr_filebrowser: kSelectorAllAvailableData failed with status -108. path: /Volumes/File Server OS X/var/log/lpr.log.3.gz
    Jul 23 14:15:09 data launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[599]: exited abnormally: Hangup
    Jul 23 14:15:09 data configd[68]: posting notification com.apple.system.config.network_change
    Jul 23 14:15:10 data lookupd[626]: lookupd (version 369.5) starting - Mon Jul 23 14:15:10 2007
    Jul 23 14:15:54 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:17:06 data named[651]: starting BIND 9.3.4 -f
    Jul 23 14:17:06 data named[651]: command channel listening on 127.0.0.1#54
    Jul 23 14:17:19 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:17:55 data ARDAgent [675]: ******ARDAgent Launched******
    Jul 23 14:17:55 data ARDAgent [675]: ******ARDAgent Ready******
    Jul 23 14:17:58 data ARDAgent [675]: call logout from LoginLogoutProxyCallBackFunction
    Jul 23 14:17:58 data shutdown: reboot by admin:
    Jul 23 14:18:01 data SystemStarter[681]: authentication service (725) did not complete successfully
    Jul 23 14:18:02 data SystemStarter[681]: IP Failover (737) did not complete successfully
    Jul 23 14:18:03 data ARDAgent [788]: ******ARDAgent Launched******
    Jul 23 14:18:04 data ARDAgent [788]: ******ARDAgent Ready******
    Jul 23 14:18:56 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jul 23 14:18:55 localhost memberd[55]: memberd starting up
    Jul 23 14:18:56 localhost kernel[0]: vmpagebootstrap: 173782 free pages
    Jul 23 14:18:55 localhost named[48]: starting BIND 9.3.4 -f
    Jul 23 14:18:56 localhost kernel[0]: migtable_maxdispl = 70
    Jul 23 14:18:55 localhost mDNSResponder-108.5 (May 9 2007 16: 57:18)[36]: starting
    Jul 23 14:18:56 localhost kernel[0]: 70 prelinked modules
    Jul 23 14:18:56 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jul 23 14:18:56 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jul 23 14:18:55 localhost master[45]: process started
    Jul 23 14:18:56 localhost kernel[0]: using 1802 buffer headers and 1802 cluster IO buffer headers
    Jul 23 14:18:55 localhost lookupd[53]: lookupd (version 369.5) starting - Mon Jul 23 14:18:55 2007
    Jul 23 14:18:56 localhost kernel[0]: FireWire (LYNX) built-in rev 2 now active, GUID 0050e4ff fe6e3819; max speed s400.
    Jul 23 14:18:56 localhost kernel[0]: Security auditing service present
    Jul 23 14:18:56 localhost kernel[0]: BSM auditing present
    Jul 23 14:18:56 localhost DirectoryService[58]: Launched version 2.1 (v353.6)
    Jul 23 14:18:56 localhost kernel[0]: disabled
    Jul 23 14:18:56 localhost kernel[0]: rooting via boot-uuid from /chosen: 6F169A87-E09E-39FA-B932-E1B3AB295133
    Jul 23 14:18:56 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jul 23 14:18:56 localhost named[48]: command channel listening on 127.0.0.1#54
    Jul 23 14:18:56 localhost kernel[0]: ADB present:0
    Jul 23 14:18:56 localhost kernel[0]: Got boot device = IOService:/GossamerPE/pci@80000000/AppleGracklePCI/pci-bridge@D/IOPCI2PCIBridge /pci-ata@1/CMD646Root/ata-4@0/CMD646ATA/ATADeviceNub@1/IOATABlockStorageDriver/I OATABlockStorageDevice/IOBlockStorageDriver/IBM-IC35L060AVER07-0 Media/IOApplePartitionScheme/AppleHFS_Untitled5@12
    Jul 23 14:18:56 localhost kernel[0]: BSD root: disk1s12, major 14, minor 20
    Jul 23 14:18:56 localhost kernel[0]: hfs mount: enabling extended security on File Server OS X
    Jul 23 14:18:56 localhost kernel[0]: Jettisoning kernel linker.
    Jul 23 14:18:56 localhost kernel[0]: Resetting IOCatalogue.
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 0
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: Matching service count = 1
    Jul 23 14:18:56 localhost kernel[0]: ROM ndrv for ATY,Rage128y is too old (0xb3383430)
    Jul 23 14:18:58 localhost kernel[0]: BMacEnet: Ethernet address 00:50:e4:6e:38:19
    Jul 23 14:18:59 localhost launchd: Server 3307 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[53]: exited abnormally: Hangup
    Jul 23 14:18:59 localhost kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:18:59 localhost java: Java is generating its shared archive, version 1.5
    Jul 23 14:18:59 localhost java: Java is generating its shared archive, version 1.5
    Jul 23 14:19:00 localhost lookupd[95]: lookupd (version 369.5) starting - Mon Jul 23 14:19:00 2007
    Jul 23 14:19:02 localhost mDNSResponder: Adding browse domain local.
    Jul 23 14:19:02 localhost kernel[0]: BMacEnet::monitorLinkStatus: Link up at 100 Mbps - Half Duplex
    Jul 23 14:19:02 localhost configd[50]: AppleTalk startup
    Jul 23 14:19:02 data configd[50]: setting hostname to "data.jrpinhouse.com"
    Jul 23 14:19:02 data ctl_cyrusdb[61]: verifying cyrus databases
    Jul 23 14:19:02 data ctl_cyrusdb[61]: skiplist: recovered /var/imap/mailboxes.db (13 records, 2528 bytes) in 0 seconds
    Jul 23 14:19:02 data ctl_cyrusdb[61]: skiplist: recovered /var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jul 23 14:19:04 data launchd: Server 3343 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[95]: exited abnormally: Hangup
    Jul 23 14:19:04 data configd[50]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jul 23 14:19:04 data configd[50]: posting notification com.apple.system.config.network_change
    Jul 23 14:19:04 data ctl_cyrusdb[61]: done verifying cyrus databases
    Jul 23 14:19:04 data lookupd[109]: lookupd (version 369.5) starting - Mon Jul 23 14:19:04 2007
    Jul 23 14:19:07 data diskarbitrationd[52]: disk1s12 hfs 6F169A87-E09E-39FA-B932-E1B3AB295133 File Server OS X /
    Jul 23 14:19:07 data kernel[0]: hfs mount: enabling extended security on Server Data
    Jul 23 14:19:07 data diskarbitrationd[52]: disk0s10 hfs F73513A7-B484-3296-BFFE-C28BF1078604 Server Data /Volumes/Server Data
    Jul 23 14:19:07 data kernel[0]: hfs mount: enabling extended security on File Server OS X BU
    Jul 23 14:19:07 data diskarbitrationd[52]: disk1s10 hfs 30AE8237-63C0-3E12-A66E-37DDF143A997 File Server OS X BU /Volumes/File Server OS X BU
    Jul 23 14:19:07 data diskarbitrationd[52]: disk2s10 hfs C7B541A1-2E30-308F-8A64-FA74EA1B96BB JRP 250GB 01 /Volumes/JRP 250GB 01
    Jul 23 14:19:08 data configd[50]: AppleTalk startup complete
    Jul 23 14:19:12 data mountd[168]: path contains symlinks: /Volumes/Server NetBoot/Library/NetBoot/NetBootSP0
    Jul 23 14:19:12 data mountd[168]: Error processing exports list line: /Volumes/Server\ NetBoot/Library/NetBoot/NetBootSP0 -ro
    Jul 23 14:19:13 data servermgrd: servermgr_dns: configured name and reverse DNS name do not match (data.jrpinhouse.com != server.jrp.inhouse), various services may not function properly - use changeip to repair and/or correct DNS
    Jul 23 14:19:14 data kernel[0]: ATY,Rage128y: vram [86000000:01000000]
    Jul 23 14:19:14 data configd[50]: target=enable-network: disabled
    Jul 23 14:19:14 data vpnd[39]: Server 'com.apple.ppp.pptp' starting...\n
    Jul 23 14:19:14 data vpnd[39]: Loading plugin /System/Library/Extensions/PPTP.ppp\n
    Jul 23 14:19:15 data vpnd[38]: Server 'com.apple.ppp.l2tp' starting...\n
    Jul 23 14:19:15 data vpnd[38]: Loading plugin /System/Library/Extensions/L2TP.ppp\n
    Jul 23 14:19:16 data master[45]: ready for work
    Jul 23 14:19:16 data ctl_cyrusdb[210]: checkpointing cyrus databases
    Jul 23 14:19:16 data ctl_cyrusdb[210]: done checkpointing cyrus databases
    Jul 23 14:19:22 data /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jul 23 14:19:27 data kernel[0]: AppleCuda_AutoRestartOnPowerLossSetting - entered
    Jul 23 14:19:28 data loginwindow[216]: Login Window Started Security Agent
    Jul 23 14:19:29 data kernel[0]: PPTP domain init
    Jul 23 14:19:29 data vpnd[39]: Listening for connections...\n
    Jul 23 14:19:29 data kernel[0]: L2TP domain init
    Jul 23 14:19:29 data kernel[0]: L2TP domain init complete
    Jul 23 14:19:29 data vpnd[38]: Listening for connections...\n
    Jul 23 14:19:36 data /usr/sbin/serialnumberd[229]: serialnumberd: Firewall rule #1 added to allow port 626.
    Jul 23 14:19:48 data /usr/sbin/serveradmin: servermgr_ipfilter:ipfw config:Notice:Disabled firewall
    Jul 23 14:19:53 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:natd launch requested
    Jul 23 14:19:54 data /usr/sbin/serveradmin: servermgr_nat: nat config:Notice:nat divert rule for interface 'en0' added to firewall
    Jul 23 14:19:58 data kernel[0]: nmbd[389] uses send/recv on a pipe
    Jul 23 14:19:58 data ARDAgent [386]: ******ARDAgent Launched******
    Jul 23 14:20:01 data ARDAgent [386]: ******ARDAgent Ready******
    Jul 23 14:25:54 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..
    Jul 23 14:28:40 data servermgrd: servermgr_web: Could not start httpd. Check httpd error log..

    It was something to do with DNS settings.
    I had to revert to an older DNS settings of 'data.xxxxxxxx.com' as after reboot for a new DNS of 'server.aaaaaaaa.inhouse' www kept asking for 'data.xxxxxxxx.com' in the error log file.
    Seems that OS X Server's DNS settings do not like being changed through the Server Admin application. Though isn't that why we have a Server Admin app and nice OS X front ends?!

  • Cannot start Web Client

    Hi,
    I recently installed Oracle Hyperion Data Relationship Management, Fusion Edition.
    Ive created a new application and repository using the management console succesfully, however when I try to run the Web Client, I get:
    --------================================
    Internet Explorer cannot display the webpage
    Most likely causes:
    You are not connected to the Internet.
    The website is encountering problems.
    There might be a typing error in the address.
    What you can try:
    Diagnose Connection Problems
    More information =============================-------------
    The url generated is http://localhost/drm-web-client
    I am running on windows 7, 64bit and XP respectively with the same results.
    Regards,
    Olu

    It sounds like you are trying to access the file as if your JNLP application were running on the server. The JNLP app is running on the client machine, so you will need to use a URL to open the file. Take a look at the JavaDocs for the following:
         java.net.URL
         java.net.URI
         java.net.File
    You also need to be sure your server is configured to serve the file. For example, you ought to be able to access the file through your browser using something like http://www.myco.com/myapp/myfile.txt. (How you configure your server is a topic for a different forum.)
    You probably also want to look into JavaWS security, and even Java security in general to determine if you need to sign your app or not. Here are some links to get you started:
            http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/development.html#security
            http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/security.html
            http://java.sun.com/sfaq/
            http://java.sun.com/j2se/1.5.0/docs/guide/security/permissions.html
            http://java.sun.com/j2se/1.5.0/docs/guide/security/index.html
    Mike.

  • Cannot start 2nd form on same application server when starting script in 1s

    Hello,
    we have a forms application running on a productive application server and the same application for different testing db's on a test application server.
    Within this application I can start a stored procedure that writes a spreadsheet via utl_file. Depending on the parameters used this might last 1 - 2 hours. When I start the procedure the forms application is blocked as expected until the procedure is finished. This would be no problem if there wouldn't happen a strange thing to some users: When they start the procedure every forms application on the same application server is blocked. This means they can work in production when they start the procedure in test environment but they can not open another test application and vice versa.
    As this only happens to some users (yet always the same) I'm lost where I have to search. I found no differences on the client machines, these are installed by a central administration tool.
    Has anyone an idea where I can start searching?
    Regards
    Marcus
    Forms 9.0 (Form Compiler) Version 9.0.4.3.0 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    PL/SQL Version 9.0.1.5.0 (Production)
    Oracle Procedure Builder V9.0.4.3.0 Build #0 - Production
    Oracle Virtual Graphics System Version 9.0.1.11.0 (Production)
    Oracle Multimedia Version 9.0.4.1.0 (Production)
    Integration der Oracle-Werkzeuge Version 9.0.4.0.0 (Production)
    Oracle Tools Common Area Version 9.0.2.12.0
    Oracle CORE     9.0.1.2.0     Production

    Hello,
    I first wondered why this is happening only to some users. Now I found that it depends on the habit how the application is called.
    The applications are called from IE with separateFrame=TRUE.
    While I have a link in my XP start menue for every application and therefore start IE anew every time, other users use a website which has the same links. The difference I saw is, that I get a Java console for every application, whereas applications started from the same instance of IE share the same Java console.
    So now we have a workaround (start IE again) but I still don't know why this is happening at all.
    Regards
    Marcus

  • Cannot start OracleDBConsole service on Windows 2003 Server

    Hello:
    All of a sudden, the above service does not start on a Windows 2003 server. The event log has this message:
    Agent process exited abnormally during initialization.
    Please help!
    Venkat

    One more piece of information. The service starts fine when started in the services control panel

  • Cannot start Backup of Azure VM Windows Server

    Whenever I start a backup of an Azure VM, I get the following error message:
    Snapshot VM sub task timed out.
    Please retry the operation in a few minutes. If the problem persists, contact Microsoft Support.
    I contacted Microsoft Support, but they told me this has not been released to Azure Support and redirected me to this forum.
    Does anyone have any idea for me?

    Hi Jrup1905 and bourgoisrebel
    Can you please provide the following information to
    [email protected] :
    1.   
    The VM name
    2.   
    The Azure Geo this VM is present.
    3.   
    Approximate time of the operation
    4.   
    Job ID for that particular job (you can see it after drilling down into the job)
    5.   
    Vault name
    Regards, Trinadh [MSFT] This posting is provided AS IS with no warranties, and confers no rights. If you found the reply helpful, please MARK IT AS ANSWER. Looking for source of information for DPM? http://blogs.technet.com/b/dpm/ http://technet.microsoft.com/en-in/library/hh758173.aspx

  • Sun Java Web Proxy Server 4.0.12 is supports Websense Web Security

    Hello All,
    I am using Sun Java Web Proxy 4.0.12 server and installed in RedHat Linux 5.0 OS and I can found software for Websense Web Security aoftware to protect my users and filter the traffic.
    How can I integrate with Websense Web Security
    Thanks & looking forward hear from you guys
    Ifthekhar Javed
    Riyadh.

    We have migrated several reverse and acl proxy from 3.6 to 4.0.6 and have hit a few issues. If anyone has encountered these we would appriate input.
    First, we thought we had caching disabled in the GUI but the server.xml still have it set to "true" in the FILECAHE entry. Will changing the entry to "false" totally disable chaching?
    When we started the migrated proxy instances the server hit memory issues with swap being eaten up very quickly.
    Second issue is MaxProcs in the magnus.conf. In 3.6 MaxProcs set the number of processes to start and it now for determening the number of processors in the server for threading. We are currently on a server with 6 processors. Should MaxProcs be set to six?
    We will be migrating to Solaris 10 and then to a T2000 so we assume the setting will have to change for each of those migigrations.
    The third issue is, has anyone run 3.6 on Solaris 10 and then migrated to 4.0 later? Sun site shows 3.6 not tested on Solaris 10 but I am sure some one has tried it.

  • Safari can't connect to the web proxy server (HTTP)

    Hello,
    I have following problem. I need to connect to the internet using a proxy server. I went to System Preferences/Network/Wi-Fi/Advanced.../Proxies. Then, I selected Web Proxy (HTTP) and enetered server's IP address and port. It looks like I did everything correctly, but Safary can't open any page because "Safari can't connect to the web proxy server (HTTP)". Does anyone know how to solve this problem?

    There are three possibilities:
    1. You entered the wrong address and port number for the proxy.
    2. You entered the wrong user name and password, if applicable.
    3. The proxy doesn't work or is incompatible.

  • QOS when using a WEB PROXY

    Hi
    Please view the attachment first.
    Basically we have a Cisco 6500 chassis with about 25 VLANS and around 25 -30 Access layer switches are serving as distribution layer switches in each VLAN.
    We now have a Web Proxy for each segment serving the users for internet access. the proxy server has only 1 ethernet interface.
    I used to police traffic for each segment at the interface connected to the Cisco ASA using Policy MAP's, This could also be done on the ASA Anyway.
    Now my problem is , we are planning to have one single high-end web proxy to serve all the VLANS. And this will be connected in say the Vlan 1 of the Cisco 6500. I have no problem here as we have GIG ETH ports on the 6500. So traffic entering and leaving the same vlan would not cause any problem.
    But the problem is i can't police traffic based on the vlan as only the IP of the Proxy will be seen on the interface connected to the ASA for all Http traffic.
    I cannot apply the policing on the vlan interfaces as, i do not want to police internal traffic.( yes there is one option where i can deny traffic with internal destination's from the policing. But in this case i'll have police configured on all vlan interface, a bit ugly and hectic.
    Another alternative is to put the web proxy in the DMZ, but my ASA has only fast Ethernet interfaces and we have got high internet Bandwidth, this would cause congestion.
    Any Ideas with respect to how i can proceed ????
    Thanks in Advance

    No, I still don't get it;-) What interface are you talking about? Wouldn't the DMZ be hanging off a real physical interface? If that's the case, there should not be any increase in traffic utilization across the internal and external interfaces from today. The DMZ interface would be the only one you need to worry about. The picture doesn't mention show anything special going on with the internal or external interfaces. If they're just fast Ethernet, then the theoretical maximum of Internet traffic today is 100Mbps, but in reality it is almost certainly lower even if you are pegging the internal interface.
    I agree that the DMZ interface, because it will see some traffic twice, may still need to be >100Mbit. Your internal interface utilization should help determine that. If it does, I believe there is a gig interface you can purchase for the 5510. This assumes you have a gig interface on the proxy (or multiple fast Ethernet interfaces)

Maybe you are looking for

  • How to reload class or redifince class in spring

    hi buddy. i have a problem when load beans in spring <bean id="load" class="com.example.Load" init-method="init"></bean> <bean id="work" class= "com.example.Work" depends-on="load"></bean>the Load#init will use ASM to write the byteCode to the Work.c

  • Badi BBP_CATALOG_TRANSFER in EBP portal

    we have implemented  badi BBP_CATALOG_TRANSFER I have kept the debugger in the code written under this implementation . 1. when I try to execute it giving CATALOG ID as input I am not getting any data in parameter u201CCATALOG_CONTENTu201D 2. when i

  • How do i lock a specific firefox profile with a password?

    I have 3 profiles in firefox (using firefox profile manager) .I want to lock access to only my profile with a specific password and keep others unlocked.(like childlock in google chrome)

  • Movement type for goods issue in intercompany STO business scenario

    Hi, everyone, In intercompany STO scenario, firstly we should create a purchase order with a transfer order type just like as UB, then we use T-code: VL10B to create the delivery note by referencing the purchase order created in first step, in succes

  • Elements 10 crashes when I save

    I have a Mac and whenever I try to save the program crashes. I have contacted support and gone through the trouble shooting with no resolve then was asked to find my disks and call back. I called and now have been put into this forum.  I need help AS