Web service is running but Server Admin says "Not available"

Hello,
I cannot configure the web service using the Server Admin tool any more. The service is running and showing no error, but the "Web" icon in the "Computer & Services" panel of Server Admin is showing dark grey color. The Overview tab of the Web Service is stating: "Web Service is: Not available"
Any ideas what I can do to get it work again?
sudo apachectl configtest gave no errors or warnings.
  Mac OS X (10.4.7)  

You should not be logging in as root, despite what anyone has told you.
And the entire mechanism of OS X Server (and most other *nix OS-en), is meant for you to not be logged in as root.
Use sudo and/or authenticate in the GUI when/where needed.
Please try Wesley's advise here:
http://discussions.apple.com/thread.jspa?messageID=2862670
Try launching apache manually, and watch your logs
Ie:
in one terminal window, type:
tail -f /var/log/httpd/error_log
make a new Terminal window and type:
sudo apachectl start

Similar Messages

  • Xcode update prompted but message returned says not available

    Checking for updates, response recommends update Xcode, clicking on update button, returns the message 'not available'.  Using Yosemite on iMac, 2009, Intel Icore5.  This has happened 3-4 times over the past week at various times during the day.

    Just in case anyone arrives here with a similar issue, I wanted to post that the problem has fixed itself. When I relaunched the App Store one day after encountering the issue, the Updates had reappeared.
    I was able to successfully download and install them.
    Clearly there is a time lag before the Updates reset after a failed download or install.  I am sure there is a file that can be deleted or edited to accelerate this, but I have not yet found it...

  • Services are running in Server 2008. But still not able to telnet on localhost

    Hello Everybody,
    Desired services are running on server but still telnet on localhost not happening.
    From remote server I am able to telnet on same services.
    I am facing issue while doing telnet to remote server alos.
    Is there anything which could stopping telnet operation.
    From same server I am not able to telnet to other server for SQL services, whereas both servers in same LAN with adjacent IP address. 

    Hi Steven,
    Thanks for response.
    I have checked same. Services are listening on desired port.
    From events log we observed that server moving out of domain controller which root cause not identified yet.
    Will it be possible if sever moving out of domain and getting NETLOGON issue. Which could block communication to other server or localhost telnet.
    Regards,
    Mahesh D. 

  • Dispatcher is running, but server not connected

    Hello,
    When I load the portal with the link http://sapbw:50000/irj/portal the page display this error
    "Dispatcher is running, but server not connected"
    In the log file defaultrace.trc is this details
    #1.5#000F2097D58D004100000CC0000013C00003F973E869EFAE#1118701161401#com.sap.engine.services.servlets_jsp.Deploy#sap.com/webadmin#com.sap.engine.services.servlets_jsp.Deploy#J2EE_GUEST#18####23d60950dc5911d9bc08000f2097d58d#SAPEngine_Application_Thread[impl:3]_18##0#0#Error##Plain###Error occured in invoking event "valueUnbound()" on listener class com.sap.engine.webadmin.control.WebAdminClusterTreeGenerator. The http session is ApplicationSession[id=(sapbw_DBW_00)ID3830150DB20054430341437593419End]. The attribute is com.sap.engine.webadmin.TREE_GENERATOR. The error is: com.sap.engine.services.servlets_jsp.server.exceptions.WebIllegalStateException: Method removeAttribute() is called in an invalid session.
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ApplicationSession.removeAttribute(ApplicationSession.java:640)
         at com.sap.engine.webadmin.control.WebAdminClusterTreeGenerator.valueUnbound(WebAdminClusterTreeGenerator.java:331)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.sessionValueUnbound(WebEvents.java:410)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.sessionValueUnbound(WebEvents.java:404)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ApplicationSession.invalidateSession(ApplicationSession.java:287)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ApplicationSession.validate(ApplicationSession.java:138)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ApplicationSession.removeAttribute(ApplicationSession.java:637)
    Thanks very much for you help
    Dayana

    Hi Dayana,
    This message occurs while the server is starting i.e starting the core services and delpoying the applications. From the above error message it is hard to
    say what the problem is. Can you explain more on what is happening? Also generally it takes about 15 -25 minutes depends on the environment.
    Also do you see any errors in the following log files
    \usr\sap\XXX\JC00\work\std_server0.out ?
    Regards
    -Venkat Malempati

  • Deploying a web services on Oracle Application Server

    Hi,
    it is possible to deploy a web services generated by axis on Oracle Application server ? and if it is how ?
    Thanks,

    Hello again.
    Thx for the reply.
    I have all specfic Libraries in my ear file, but i don't get the problem solved.
    I can see the example Web Services from axis but not my own (which should be generated from my class files)
    Here is the build file I use, perhaps someone find what I do wrong or what I forgett:
    Regards
    <project name="readySAPOC4J" default="" basedir=".">
    <!-- ********** PROJEKT VARIABLEN ********** -->
    <!-- set global properties for this build -->
    <property file="build.properties"/>
    <!-- ********** CLASSPATH ********** -->
         <path id="project.classpath">
              <pathelement location="${build}"/>
                   <fileset dir="${lib}">
                        <include name="activation.jar"/>
                        <include name="ant.jar"/>
              <include name="axis-ant.jar"/>
                   <include name="axis.jar"/>
                   <include name="commons-discovery.jar"/>
                   <include name="commons-logging.jar"/>
                   <include name="jaxrpc.jar"/>
                   <include name="log4j.jar"/>
                   <include name="mail.jar"/>
                   <include name="saaj.jar"/>
                   <include name="sapjco.jar"/>
                   <include name="tools.jar"/>
                        <include name="wsdl4j.jar"/>
                   <include name="ant.jar"/>
                   </fileset>
         </path>
    <!-- ********** TASKDEFINITION ********** -->
         <taskdef name="axis-admin" classname="org.apache.axis.tools.ant.axis.AdminClientTask">
              <classpath refid="project.classpath"/>
         </taskdef>
    <!-- ********** INITIALIZATION TARGETS ********** -->
              <!-- ERSTTELLEN DER ORDNER IN DIE DIE DATEIEN KOMPILIERT WERDEN -->
                   <target name="init">
                   <mkdir dir="${deploy}"/>
              <mkdir dir="${build}"/>
              </target>
              <!-- LÖSCHEN DER DATEIEN VOM VORHERIGEN BUILD -->
              <target name="clean">
                   <delete dir="${deploy}"/>
              <delete dir="${build}"/>
              </target>
    <!-- ********** KOMPILIERE ALLER JAVA DATEIEN ********** -->
         <target name="compile" depends="init">
              <delete dir="${build}/SAP.class"/>
              <javac srcdir="${src}"
                   destdir="${build}"
                   classpathref="project.classpath"
                   debug="on" />
         </target>
    <!-- ********** ERSTELLE DIE WAR DATEI ********** -->     
         <target name="createWar" depends="">
              <delete file="${deploy}/axis.war"/>
                   <war warfile="${deploy}/axis.war" webxml="WEB-INF/web.xml" compress="true">
                        <classes dir="${build}">
                        </classes>
                        <webinf dir="WEB-INF">
                        <exclude name="web.xml"/>
                             <exclude name="users.lst"/>
                             <exclude name="**/WEB-INF/classes/*"/>
                             <exclude name="**/lib/*"/>
                        </webinf>
                        <!--fileset dir="${}">
              <exclude name="**/WEB-INF/**"/>
                        </fileset-->
                        <lib dir="${lib}">
                        <include name="activation.jar"/>
                             <include name="axis-ant.jar"/>
                             <include name="axis.jar"/>
                             <include name="commons-discovery.jar"/>
                             <include name="commons-logging.jar"/>
                             <include name="jaxrpc.jar"/>
                             <include name="log4j.jar"/>
                             <include name="mail.jar"/>
                             <include name="saaj.jar"/>
                             <include name="sapjco.jar"/>
                             <include name="wsdl4j.jar"/>
                             <include name="tools.jar"/>
                             <include name="ant.jar"/>
                   </lib>
                   </war>
         </target>
    <!-- ********** ERSTELLE DIE EAR DATEI ********** -->     
         <target name="createEar" depends="createWar">
              <delete file="${deploy}/axis.ear"/>
                   <ear destfile="${deploy}/axis.ear" appxml="${config}/application.xml">
                        <fileset dir="${deploy}">
                             <include name="axis.war"/>
                        </fileset>
              </ear>
         </target>
    <!-- ********** DEPLOYE DIE EAR DATEI ********** -->     
         <target name="deployEar" depends="">
         <java jar="C:\Programme\orabpel\integration\orabpel\system\appserver\oc4j\j2ee\home\admin.jar" fork="yes">
         <arg value="ormi://localhost:23791"/>
         <arg value="admin"/>
         <arg value="welcome"/>
         <arg value="-deploy"/>
         <arg value="-file"/>
         <arg value="C:\Programme\eclipse\workspace\readySAPOC4J\deploy\axis.ear"/>
         <arg value="-deploymentName"/>
         <arg value="axis"/>
         </java>
         </target>
    <!-- ********** WEB APPLICATION BINDING ********** -->     
         <target name="bind-web-app" depends="">
         <java jar="C:\Programme\orabpel\integration\orabpel\system\appserver\oc4j\j2ee\home\admin.jar" fork="yes">
         <arg value="ormi://localhost:23791"/>
         <arg value="admin"/>
         <arg value="welcome"/>
         <arg value="-bindWebApp"/>
         <arg value="axis"/>
         <arg value="axis"/>
         <arg value="http-web-site"/>
         <arg value="/axis"/>
         </java>
         </target>

  • No web services show under web services node in app server navigator

    Hi,
    (JDev 11.1.1.5.0 and WLS 10.3.3.0)
    In JDeveloper Help, the topic Publishing Web Services to a UDDI Registry says:
    1. Deploy the web service to Oracle WebLogic Server.
    2. In Application Server navigator, expand the application server node.
    3. Expand the web services node and locate the node (which represents the WSDL) of the web service you want to publish.
    4. Right-click the WSDL node and choose Publish WSDL to UDDI to launch the Publish WSDL to UDDI Registry dialog.
    I did 1, 2 & 3 but nothing shows under the web services node in the app server navigator.
    There are lots of web services in that server, not only the one I had just deployed.
    What can be wrong?
    Thanks
    Luis

    Hi SilverCat,
    I'm sorry to hear that you are having problems getting your claim code to setup ePrint on your Officejet 6700.
    Yes you can obtain the printer claim code.  There are a couple different ways that you can do so. The steps to do so can be found in your user's guide starting on page 69.  I have included a link to your User Guide.  The easiest is to do it from the front panel of the printer.  I have included a document on getting your printer claim code and it has those steps for you.  I have also included a document on getting started with HP's ePrint for additional reference.
    HP Officejet 6700 User Guide
    http://h10032.www1.hp.com/ctg/Manual/c03227497.pdf
    Getting the Printer Claim Code
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c03550536
    Getting Started with ePrint
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c02908385
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to deploy a web service on Oracle Application Server 10.1.2.0.2?

    Hi everyone,
    I followed the instructions of the following link to create a web service using jDeveloper 10.1.3.1.0 on Oracle Application Server 10.1.2.0.2. [http://st-curriculum.oracle.com/obe/jdev/obe1013jdev/10131/devdepandmanagingws/devdepandmanagingws.htm#t1]
    The web service created was deployed & used with no errors on the standalone OC4J instance.
    But my goal is to deploy my web service on Oracle Application Server 10.1.2.0.2.
    So after several attempts, I was able to deploy it on the Oracle Application Server 10.1.2.0.2 but unfortunately I didn't know the URL needed to use the web service.
    I tried the following link (http://192.168.0.91:18100/JavaWebService-GetDates-context-root/GetDatesWSSoapHttpPort) but also didn't work :(
    I also tried converting to J2EE 1.3 and still not knowing how to access the web service.
    Please advice with a solution.
    Thanks in advance.
    Lana

    Thanks everyone for your help :)
    The problem turned out to be that Oracle application server 10.1.2 is unlike the others servers, it uses 2 ports:
    - port (19100) is dedicated for the console.
    - port (7779) is to view your applications.
    So the URL needed turned out to be "http://acteos-109.beirut.acteos:7779/beanTest" instead of "http://acteos-109.beirut.acteos:18100/beanTest"
    Hope this info is useful
    Lana

  • The agent service is running, but the request failed for ...

    Hi!
    ZCM 10.3.3 on SLES 11. HP notebook, Windows 7 Pro SP1.
    When WiFi is also switched on I got yellow diamond in ZCC and error "The agent service is running, but the request failed for one or more known addresses.". What this does mean? WiFi off -- green again! =)
    More thanks, Alar.

    Does the address it's getting via Wireless have a path back to the ZCM server? That was my point. If your wireless is vlan'd away from the wired network, ZCM won't be able to contact it through THAT particular address and will show the yellow diamond as a result even though it communicates fine through the wired address.

  • Not able to deploy axis2 web service on oc4j 10g server

    Not able to deploy axis2 web service on oc4j 10g server, getting internal server every time I click on services link....
    Edited by: 974237 on Nov 30, 2012 4:17 AM

    Not able to deploy axis2 web service on oc4j 10g server, getting internal server every time I click on services link....
    Edited by: 974237 on Nov 30, 2012 4:17 AM

  • Creation and deployment of web services on sun portal server

    Hi
    can you please tell me.
    How we can create and deploy web service on sun portal server.
    or provide me some document or URL, so that I can proceed forward
    Thanks
    Vikram

    Hi
    can you please tell me.
    How we can create and deploy web service on sun portal server.
    or provide me some document or URL, so that I can proceed forward
    Thanks
    Vikram

  • Deploying a web service on Oracle application server

    Hi;
    I was able to create the .wsdl file from Elipse using Java 1.3.
    I was not able to connect to the oracle Application server from eclipse is there any other way to deploy the web server.
    Can anyone advise with the steps to deploy a web service on Oracle Application server 10.1.3. differently
    Regards,

    using Ant.
    check apache.org project there they have the ant section.
    Regards

  • Web Service Client - SOAP/jms: Specific response queue (not default queue)?

    Hi @ll
    I try to define a specific jms response queue for a web service client that communicates SOAP/jms, running on a WLS 9.2. The web service itself runs also on a WLS 9.2 where also the request and response queues are located. By default the client receives the responses from a temporary response queue. Is there a way to define a specific response queue e.g. setting the JMSReplyTo property in the request on the client side?
    /cheers&greetz
    Dani

    WLS do not have a light SOAP client with callbacks yet. It is
    not a planed feature for 7.0, but we will considering this for
    post 7.0.
    regards,
    -manoj
    "markhu" <[email protected]> wrote in message
    news:[email protected]..
    Hi, guys:
    I have a system : client written in Java/Swing, HTTPS authentication,
    and then subscribes to a WLS 61. SP2 based JMS Topic and also has the
    ability to send message to a Queue, since I can not bring down the size of
    the client side WLS JMS dependency lib, I am thinking about using SOAP /
    web service as the communication tier between my client and server, so the
    question is: since the client need get the price updates in a real time
    mode, I need build a server side based PUSH for all the new price updates
    which come into the JMS Topic, and broadcast as SOAP messages to client,is
    this mean that I have to build the Call - Back for the Java Swing Client,so
    it can automatically get the new price updates as it's getting from JMS
    Topic now ? Any Idea on how to build server side PUSH based SOAP message
    center as web service ?? Thanks a lot.
    regards,
    mark
    FYI:
    I need the same PUSH service for my .NET based client as well.

  • I verified my email but ipod touch says not verified, I go to redo and its says already verified but Itunes still shows it needs to be verified

    I verified my email but ipod touch says not verified, I go to redo and its says already verified but Itunes still shows it needs to be verified.  I was in the process of creating a new Apple ID for my touch.

    Please go to Settings>Itunes and App Store and log out of your Apple id and right back in again. See if this doesn't resolve this issue.

  • I am connected to my iMac to recharge iPad but it is saying "Not charging" ! Why and what have I done wrong?

    I am connected to my iMac to recharge iPad but it is saying "Not charging" ! Why and what have I done wrong?

    If you already updated to 8.0 you're doing nothing wrong. It's one of the lovely issues created by the update. I just tested mine, same problem.

  • My iPad 3 Will not update ils apps.. They are there but I can't open them... I have Internet .. It just says not available right now.. It's been 3 days????

    My iPad 3 Will not update ils apps.. They are there but I can't open them... I have Internet .. It just says not available right now.. It's been 3 days????

    Quick update, the duplicate of the comic-con episode downloaded succesfully, and so has the first episode of Supernatural season 8. Blue dots appear to their left in the library.
    All the Vampire Diaries episodes (except the bonus comic-con double) have vanished, but I paid for them !
    They're not anywhere on my harddrive either.
    Which is new by the way, this is a new MacbookPro, literally set it up today.
    So it would seem this is a case of purchased and pseudo-downloaded episodes that ended up beinge gobbled up by some iTunes black hole, leaving me with no money, and no episodes.
    Need help, confirmed.

Maybe you are looking for

  • JMX API to Create Event Generator

    Is there any JMX API available to create JMS event generator? Thanks

  • Can't see other phones in account?

    Why can't I see the other phone on my account and view usage details?  I'm the account owner.

  • TS1702 iTunes freezes on my iPhone 3GS - and I can't reinstall it!

    ITunes launches ok but freezes whenever I try to view any albums, podcasts or other content. And I can't reinstall it as that doesn't seem to be an option.

  • VF02- No a/c document- Wrong Businee Area

    HI Gurus, I created an invoice but for this No accounting document is generated. when i try to to release manually by going VF02, system is showing the errroe like " Wrong Business Area" Can any one tell me the reason Cheers, Sumith

  • Missing originals in Aperture

    Hello All, I'm having an odd problem.   First off, a little background, I am using Aperture 3.4.3. and because of the size of my photo library, I store it on a raided external drive.  I have photos from 1999 to 2013 stored in Aperture.  I started sto