Web Server Issue

Guys,
I am facing a little problem related to Apache Web Server. When we configured Reporting and Analysis tool, the results showed Web server as succeded. But i could not see Apache in the services list and hence could not start. As a result i am getting errors while viewing reports in Workspace
So I had started Apache from the Hyperion directory folder(after unblocking the Windows security alert) upon which i am able to see the reports in workspace. I have to start Apache everytime
I login to the server.
Is there a way to resolve this issue.
Thanks in advance
K

It might help others if you mention which version you are referring to and the OS that is installed on.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • LMS 3.2 on Win 2008 Server - Web Server Issue

    Hi,
    I just installed LMS 3.2 on Windows 2008 Server Standart X64 and the CiscoWorks Web Server service does not start (Apache service is down but Tomcat up).
    All other services seem to be correctly started even if this is quit long.
    When I try to manually start the Apache Service with "pdexec Apache", i got :
    ERROR:Get reply from server failed:
    ERROR: Daemon Manager startup in progress. Please wait.
    When the deamon is up, the second line disapeared but apache is still not responding and of course, the URL is unreachable.
    This is a HP Proliant Server with 12Go RAM, is there a maximal size for the paging file ?
    I did not modify TMP and TEMP variable, should I have done it before the installation ?
    it appears to be some service startup issue on win 2008, is there bug fix or work around ?
    pdshow attached
    Thanks for your help, this is quit urgent.
    Cedric.

    >>>  is there a maximal size for the paging file ?
    There's indeed a swap file issue with Win 2008. See the first reply in this thread for corrective action: https://supportforums.cisco.com/message/675893#675891
    Though it may not apply, because you've installed LMS 3.2 ok, since you seem to be aware of it, the TMP/TEMP variables do need to be shortened, as noted in this post: https://supportforums.cisco.com/message/677383#677383
    Is your Win 2008 Server running any Microsoft Service Packs? Because AFAIK Win 2008 SP2 is not yet supported, and no one seems to have any luck on it with LMS 3.2 yet.
    After LMS 3.2 is up and running, if you can't log in to the web GUI, you might be running into the CSCtb17186 bug, described in this post: https://supportforums.cisco.com/message/676256#676256

  • HP Officejet Pro X576dw MFP Default PIN/Secure Embedded Web Server Issues

    Hello I have a few issues with this printer: 1. I am unable to get to the secure embedded web server ie. https://192.xxx.xxx.xxx, although the normal unsercure version works fine. The problem with this is I cant edit or reset any of the fucntions such as scan to email and scan to network for my users. This function used to work for a while till I had to reset the printer for some problem. 2.  Further there is a tab called sign in into which I am not able to sign in as there is no mention of the PIN anywhere in the manual or in any literature. Please help. Thank you

    Okay so I managed to reset to factory defaults and the secure pages were accessible. However this still doesnt solve the mystery of the Default PIN. HP Please help. Thanks

  • 10.3.9 Web Server Issue

    I'm still on 10.3.9 because it has a CD-ROM drive and Tiger Server is on DVD
    So last night all of a sudden my Web Server, which had been running fine for 4 years just stopped and will not restart.
    Here is what I'm getting, looked at all the error logs that pertain to httpd
    Jun 9 02:23:37 localhost servermgr_web: servermgr_web: httpd couldn't be started.
    Jun 9 02:23:37 localhost servermgr_web: servermgr_web: Details in the error log file (/var/log/httpd/error_log).
    So that points to an explanation in error_log
    /var/log/httpd/error_log stopped writing errors after this event
    [Sun Jun 8 19:42:59 2008] [notice] SIGUSR1 received. Doing graceful restart
    Its been doing this since 19:43 on the 8th
    So, I figure, maybe restart.
    I need this to work, or a work around because I'm working on a Masters and a third of it is dependent on that server serving webpages.
    If I can't get it to work, are there options for migrating the content and settings from a 10.3.x Server to 10.5 and having it all work?

    Robert,
    Thanks for the input. I tried the mailbfr program and while it worked it failed to resolve the problem. I did contact Alex directly via his web site (http://osx.topicdesk.com) and he was able to resolve the problem for me by manually performing the steps that the program does automatically.
    Thanks again.
    Mike

  • Compactrio web server issue

    i have a problem with compactrio webserver
    i have configured everything but i cant see the front panel in browser
    the message is "Server does not supprort Remote panels"
    I am using labview2012
    Please helpme to configure the webserver
    if anybody have a Step by step instruction pls help me

    Have you seen this document? http://digital.ni.com/public.nsf/allkb/C23EF1551D8C52ED86256B140073EE2E
    Run through the possible reasons for the error and see if any help. If nothing helps can you please describe your system and which cRIO you are trying to connect to? It may be worth adding a MAX technical report to your next post so I can see everything that you have installed.
    http://digital.ni.com/public.nsf/allkb/271F252B4EF0A2E0862570E70056A1E4
    Patrick H | National Instruments | Software Engineer

  • Admin Commands issue on Windows Web Server 2008 R2 - 64Bit

    Hi,
    I have tried exactly same process on FMS3.5 Installed on Centos and it worked perfectly.
    But not working in case of Windows Web Server 2008 R2 - 64Bit.
    Here is what i am trying to do -
    Basically i want to extract live streams list and display them in HTML as ordered list on another server them FMS.
    What i did in the case of FMS on Centos server -
    I installed Apache and PHP on this server and created a PHP file with following text in it. -
    abc.php
       $xml = simplexml_load_file('http://<fms-server-ip>:1111/admin/getLiveStreams?auser=admin&apswd=password&appInst=live','Simple XMLElement', LIBXML_NOCDATA);
    foreach($xml->children() as $child)
       foreach($child->children() as $child2)
              echo $child2 . ",";
    and in hosting server where i want to display the list i entered following code in PHP file -
    $homepage = file_get_contents('http://<fms-server-ip>/abc.php');
    echo $homepage;
    i got comma seperated values easily and everything is loading fast without any issue.
    Now problem occured with Windows Web Server 2008 R2 - 64Bit.
    I installed FMS, Apache and PHP in this server also, did evrything in the same way like in centos.
    FMS, APache and PHP files are working fine in this.
    But only problem occured when in abc.php i use
    $xml =  simplexml_load_file('http://<fms-server-ip>:1111/admin/getLiveStreams?auser=admin&apswd=password&appInst=live','Simple XMLElement',  LIBXML_NOCDATA);
    After this file do not loads and takes longer time to load and after some time a blank page appears. It works fine with a local XML file.
    i am able to see the XML file by opening it directly in browser, but somehow this is not working with   simplexml_load_file. I dont think this is PHP issue because with local XML file it works fine. May be some port issue or something else. But i am able to view XML file directly in browser from another computers as well.
    Kindly help, is there some other configurations should be changed in case of windows version. I have allowed admin commands as usual before doing all this. Ports 1111,80,1935 are also opened.
    Please guide

    Hi,
    Yes in Browser, the response is perfect. The only issue is in Calling inside in any file, i even tried Javascript's XML dom to load it, but same result, the file is just loading and never loads completely. I also tried using an SWF file with AS3 code to load XML inside as3 and send the result to any JS function.
    The output comes using trace in as3, but when it comes to browser, the same loading happends and result never loads.

  • Dreamweaver Namespace issue on my web server

    I am hosting my site on GoDaddy.com. I have created a site
    using Dreamweaver CS3 and SQL2005. Everything works great on my
    local machine, but when I upload it to the remote web server, the
    aspx pages do not work. GoDaddy support says it is due to the
    second line in every one of my aspx pages, specifically the
    namespace attribute. From what I've read, this is automatically put
    into every page created by Dreamweaver that contains an asp/asp.net
    control. GoDaddy's response is to remove this line from my page and
    everything will work great, which obviously it will not. I really
    would not like to have to rebuild 32 + aspx pages after already
    developing them in Dreamweaver. The actual line they say is causing
    the problem is below:
    <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
    Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutra l"
    %>
    Does anyone have any suggestions as to how to get around this
    issue?

    "carrb69" <[email protected]> wrote in
    message
    news:[email protected]...
    > Joris,
    >
    > I did have the dll located in a subfolder of the root
    directory. I also
    > put it
    > in the root directory as well after receiving your
    previous response and
    > got
    > the same results. Unfortunately, I would need to go to
    GoDaddy to get the
    > exact
    > error because all I see when I try to access my aspx
    pages is a very
    > generic
    > error. I had to go to GoDaddy previously to figure out
    that it was the
    > Namespace attribute that was causing the issue. I'll try
    this evening to
    > get
    > them to send me the actual error message and post it
    then. Thanks for the
    > quick
    > responses.
    >
    > Brian
    Hi Brian,
    maybe it's your browser that's hiding the error message, if
    using MSIE then
    please disable the "Show friendly HTTP error messages" option
    in Internet
    Options.
    If that doesn't reveal the error message, try editing the
    web.config that
    dreamweaver generated for you with the following settings,
    (add any missing
    settings, and leave the connectionstrings that dreamweaver
    has setup intact)
    <configuration>
    <system.web>
    <compilation debug="true"/>
    <customErrors mode="Off"/>
    <trace
    enabled="true"
    traceMode="SortByCategory"
    requestLimit="10"
    pageOutput="false"
    localOnly="false"
    />
    </system.web>
    </configuration>
    Debug Compilation should give more insight inrto compilation
    errors, which
    can allso be done at the page level via<% @ Page
    debug=true" %>
    Custom Errors Off will disable any error pages that may be
    shown in case of
    an error, seting it to "emoteOnly" will only thow these page
    to external
    visitors, but since you are not working on the server that
    actually makes
    little sense.
    The trace setting should enable a HTTP Handler that allows
    you to view trace
    information from /trace.axd in the root of your website,
    enabling pageOutput
    will inject the tracing information into every page, which
    can allso be done
    at the page level via <% @ Page trace=true" %>
    There settings do have a performance impact because they are
    enabled for
    every request in the application, once you've got the errors
    out disable
    them at the application level and enable them per-page.
    Hope this helps
    Joris

  • Issue with permissions to upload files into Apache web server to OS 10.8.2

    Hello everyone;
    I setted up Apache web server and mysql to OS 10.8.2 Mountain Lion. It's working fine except for the permissions. I can't upload files into the web site directory. Doesn't recognize, e.g., the PHP function "move_uploaded".
    One problem for my is that I can't modify the permissions by "Terminal" app since it telling me that the "Process completed" and I can't write any script.
    Any suggestion will be welcome.
    Thanks in advance.

    My only question now would be how to speed up Safari's 6.0.1 performance in 10.8.2 or do I just accept that it's a little slower than it was, which is fine. Are other folks having this issue?
    I was primarily passing along info about my particular download speed and for the Web Confidential 3.8 people: make a backup of your passwords b4 installing 10.8.2 or be prepared to upgrade.

  • Installation issue: Sun one web server 6.1 SP5 with JDK1.6 on Windows XP

    Hi,
    I am trying to install sun one webserver 6.1 SP5 on my system which has windows XP operating system for the development work. the JDK version i am using is JDK1.6.
    While installing sun one webserver at step where i can use custom java development kit i am providing path for the JDK1.6 in "JDK Path" text box as "C:\Java\jdk1.6.0_11".
    while clicking next it throws me error "The version of selected JDK is too old". i don;t have any other version of JDK installed on my system.
    Can any one tell me what can be the problem here?
    Regards,
    Nemish

    Can you try Web Server 7.0 update 6?
    BTW JDK version you are using has security vulnerabilities. Please upgrade to the latest JDK
    as per [http://sunsolve.sun.com/search/document.do?assetkey=1-66-263489-1]
    This issue is addressed in the following Java SE and Java SE for Business releases for Windows, Solaris, and Linux:
    * JDK and JRE 6 Update 15 or later
    * JDK and JRE 5.0 Update 20 or later

  • Apache web server 2.0 plugin issue with Iframes

    I was wondering if anyone had any issues related to iframes when going from the Apache plugin for version 1.3 to version 2.0. Currently I'm having a problem where I use the mod_wl20.so plugin on Apache web server 2.0X and I will get a download dialog box to download a html file. I do not have this issue when using the plugin for Apache web server 1.3X.
    Thanks
    Jon
    Message was edited by:
    [email protected]

    there is no SAP supported solution for Apache2.
    Note https://service.sap.com/sap/support/notes/442401 stated the development has ended.
    But you can build your own filter based on SSOEXT library, see https://service.sap.com/sap/support/notes/304450 for details.
    regards, Norbert

  • Security issue with web server plug-in with Weblogic server

    Hi,
    I have a setup where I have an Microsoft IIS setup as the front facing web server and have the WLS IIS plug-in installed on it. At the backend, is two WLS11g managed servers in a cluster.
    I have a JAX-WS client running on HPUX hitting the web service via IIS but I observe a very strange thing. When the service request is rather small, it could pass through IIS and the managed servers could pick up the call and reply correctly. However, when I have a bigger request call (larger payload), it will error out, citing "Unsupported Content-Type: text/html Supported ones are: [text/xml]".
    I have also attempt to put in a TCP/IP Monitor between the client and IIS and it appears that regardless if the call gets through, it seems to consistently got hit with a HTTP error 401.2, follow by a 401.1, and then, the WSDL came back. I am pretty sure that the web services are not secured as I could get the WSDL without any authentication on the managed servers direct from my brower (it did pop the authentication window if I attempt to hit the web services via IIS)
    Anyone has any idea what is going on, the issue seems to be so contradicting...
    Thanks in advance.

    When you look at this link http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/8feeaa51-c634-4de3-bfdc-e922d195a45e.mspx?mfr=true
    You can check the authentication method that is configured for that node in the metabase.

  • Intel vPro AMT integration with SCCM 2012R2 - Issues with SCCM finding the "ConfigMgr AMT Web Server Certificate"

    Good evening all,
    I'm attempting to get Intel SCS integrated with SCCM 2012 R2 and I have both sides working, doing what they do best, however, I have issues when I try to mate the two. I started with a single server for the site and then tackled the Intel side with success,
    then I added another site server to run the Out of Band service point and Enrollment point. Up until this point I've had no issues with certificate templates, or issuance of those certs. 
    I have re-read the TechNet documents a few times regarding the PKI setup, some Intel documentation and three step by step articles and non of them seem to differ so I can't understand why I'm unable to choose my "ConfigMgr AMT Web Server Certificate"
    when configuring the Out of Band Management Component Properties page.  The "AMT web server certificate template:" dialog shows my CA FQDN and CA name, but the certificate template list is always blank.  I've tried this from both the remote
    and local ConfigMgr consoles.  The site servers have rights on the CA to manage and issue certs, is there something I'm missing that isn't in the documentation or buried somewhere that I missed?  Is there a Application policy that should be on the
    cert that isn't mentioned anywhere?
    Thanks in advance!
    Tesfaye

    Hi Joyce,
    Thanks for responding.  I pretty much have this error repeating in the log file and not much else:
    [28, PID:13388][05/21/2014 15:17:15] :System.DirectoryServices.DirectoryServicesCOMException\r\nThere is no such object on the server.
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_AdsObject()
       at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne)
       at System.DirectoryServices.DirectorySearcher.FindAll()
       at Microsoft.ConfigurationManagement.AdminConsole.Common.ADUtils.EnumEnterpriseCACertificateTemplates(String domainEntryName, String certAuthorityFqdn, Boolean isServerAuthen)\r\n
    I will look into this, but another hint would be greatly appreciated!
    Thanks,
    Tesfaye

  • Can Acrobat 9 pro be installed to XP with web server(IIS) without any license issue?

    It seems not to permit to install into window server, but how about the window XP had web server installed?

    Thanks for your reply. As I mentioned in my post, when I went to Control Panel to uninstall Acrobat 11.0, it wasn't listed among currently installed apps. However, after going back and looking through the Installed On dates in Control Panel, I realized that for some reason, it's called Adobe PFD Creation Add-on XI, rather than Acrobat 11.0. Interestingly, the program folder name in Windows Explorer still uses Acrobat 11.0.
    Fortunately for me, I always have disc versions of my software. So I was able to re-install Acrobat 9.0 once I got rid of Adobe PDF Creation Add-on XI. I really wish that Adobe made clearer what extras they are installing with these trial versions :-(
    Thanks again.

  • Applet can't read local file on web server, security issue!

    There is any way to read/write files of web server through the applet except the Signed Applet.
    If any idea the reply me soon.
    Thanks in advance

    Applets are downloaded from web servers and execute on the client machine.
    Therefore they have no access to the web server file system, signed or not.
    They could have access to the client file system (the machine where they run),
    but for security reasons only signed applets have this privilege.
    So to answer your question, you sign if you want to access client files.
    To access web server files, you don't need to sign the applet, but you need
    to provide some method of accessing files remotely, for instance:
    - Files published for the web can be read using HTTP
    - Files can be read or writen with the help of an FTP server on the same machine as the web server
    - A servlet running on the HTTP server can collaborate with your applet to exchange files

  • CDSSO Issue in Web Server 6.1 SP 5. Agent and AM in different domain.

    I have Sun ONE Web Server 6.1SP5 and installed Policy Agent 2.2.
    URL: http://sjws6-dev-10.team.xtra.co.nz:10080
    I have Access Manager 7.0 in Application Server.
    URl : http://sjapp9-dev.uname.tech.co.nz:8080/amserver
    So Agent and Access Manager is in different domain.
    I have enabled CDSSO.
    # Cross-Domain Single Sign On URL
    # Is CDSSO enabled.
    com.sun.am.policy.agents.config.cdsso.enable=true
    # This is the URL the user will be redirected to for authentication
    # in a CDSSO Scenario.
    com.sun.am.policy.agents.config.cdcservlet.url = http://sjapp9-dev.uname.tech.co.nz:8080/amserver/cdcservlet
    Now problem what i am facing is :-
    When i try accessing a protected resource then it searches the Parent Realm Data Store.
    It should search the LDAP Data store which i configured for the Realm.
    com.sun.am.policy.am.login.url = http://ajapp9-dev.uname.tech.co.nz:8080/amserver/UI/Login?realm=YTel
    amAuthLDAP Log.
    08/25/2008 12:13:02:459 PM NZST: Thread[service-j2ee,5,main]
    LDAP resbundle locale=en_US
    08/25/2008 12:13:02:459 PM NZST: Thread[service-j2ee,5,main]
    Host: sjapp9-dev
    PORT : 38389
    08/25/2008 12:13:21:153 PM NZST: Thread[service-j2ee,5,main]
    LDAP initialize()
    08/25/2008 12:13:21:153 PM NZST: Thread[service-j2ee,5,main]
    attrs is : []
    08/25/2008 12:13:21:166 PM NZST: Thread[service-j2ee,5,main]
    bindDN-> cn=amldapuser,ou=DSAME Users,dc=uname,dc=tech,dc=co,dc=nz
    baseDN-> dc=uname,dc=tech,dc=co,dc=nz
    userNamingAttr-> uid
    userSearchAttr(s)-> [uid]
    userCreationAttrs-> []
    searchFilter->
    searchScope-> 2
    ssl-> false
    authLevel: 0
    Host: sjapp9-dev
    PORT : 38389
    Pattern : *|(|)|&|!
    08/25/2008 12:13:21:171 PM NZST: Thread[service-j2ee,5,main]
    Connecting to sjapp9--dev:38389
    Searching dc=uname,dc=tech,dc=co,dc=nz for (uid=johndoe)
    scope = 2
    08/25/2008 12:13:21:171 PM NZST: Thread[service-j2ee,5,main]
    Create LDAPConnectionPool: sjapp9--dev:38389
    08/25/2008 12:13:21:171 PM NZST: Thread[service-j2ee,5,main]
    LDAPAuthUtils.LDAPAuthUtils: min=1, max=5
    08/25/2008 12:13:21:183 PM NZST: Thread[service-j2ee,5,main]
    userAttrSize is : 2
    08/25/2008 12:13:21:184 PM NZST: Thread[service-j2ee,5,main]
    Cannot find entries for (uid=johndoe)
    But it should seach in the User LDAP Data store.
    Not sure what is the problem.
    Regards,
    Edited by: IDM1312 on Aug 25, 2008 2:10 AM

    I presume that by now you have tried changeing your cdcservlet.url to read:
    com.sun.am.policy.agents.config.cdcservlet.url = http://sjapp9-dev.uname.tech.co.nz:8080/amserver/cdcservlet?realm=YTel

Maybe you are looking for