How to Configure my url in Apache server?

i have an Apache webserver.i want to give url as desired say.http://intranet.com. Now iam giving my machine ip address as "127.0.101:9000 "to get my html page displayed from a remote terminal in a intranet network.
How to configure the apache so that i can replace the ip address with my desired name url type. Please help me.

How to configure the apache so that i can replace the
ip address with my desired name url type. Please help
me.Apache cannot do anything about this . It is your network DNS and DHCP that does this for you .If u edit the hosts file in a pc on ur lan ,then u can invoke from this m/c with the string as long as ur m/c isnt re-booted .This is assuming that u do not have a static IP adress .

Similar Messages

  • How to configure Time-sheet in Project server 2013 please share the doc with screen shot

    How to configure Time-sheet in Project server 2013 please share the doc with screen shot
    Thanks and Regards, Rangnath Mali

    Hi,
    Please refer to the following Youtube video and article.
    https://www.youtube.com/watch?v=lZWvg4q17JE
    https://support.office.com/en-sg/article/Set-up-timesheets-and-task-status-672fa06f-8c4b-4e43-bfbc-4c355d681605
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • How to configure Sun Java System Application Server Enterprise Edition 8.1

    hi all,
    How to configure Sun Java System Application Server Enterprise Edition 8.1 to my IDE..( jstudio)
    I have installed jes for my windows system.. so that i have removed platform version of Application Server..
    I try to add the Enterprise application Server (Sun Java System Application Server Enterprise Edition 8.1) to JStudio IDE..
    but i couldn't;

    Configuring your IDE to integrate with Sun App Server is something you probably will have to ask in some sort of JStudio forum. Other than for Netbeans, Eclipse, or possibly IntelliJ IDEA, you might not have much luck answering an IDE question here. I could be wrong though. Maybe somebody will have an answer for you and set me straight.

  • Need assistance how to configure RDS on a standalone Server 2012 R2 not joined to a domain

    Hi,
    I need help on how to configure RDS on my standalone server 2012 R2 that is not joined to a domain.  I would also like to see the counterpart of Terminal Services Manager.
    I am familiar with Terminal Services on my old Server 2003 which I migrating.
    Thank you for your assistance.
    Sincerely,
    Ramon

    Hi,
    the dedicated RDS/TS forum is here:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=winserverTS
    Some useful articles, which seem to answer your questions:
    http://support.microsoft.com/kb/2833839
    http://ryanmangansitblog.com/2013/10/30/deploying-a-rdsh-server-in-a-workgroup-rds-2012-r2/
    http://support.risualblogs.com/blog/2014/03/10/setting-up-a-2012-r2-rds-gateway-for-a-workgroup/
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • How can i create datasource on apache server for ADF application?

    Hi All,
    i my use case i have created simple adf application using ADF BC and want to deploy on Apache server 6.x.
    So my question is that  how can i create Data Source i have goggling and find  two different way to do this.
    1. write following line of code on apache server conf/Context.xml file.
    <Resource name="jdbc/TestDB" auth="Container"
                  type="javax.sql.DataSource"
                   driverClassName="oracle.jdbc.OracleDriver"
                  url="jdbc:oracle:thin:@localhost:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"/>
    but when i have used this way i got following exception.
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection
    check link-
    https://forums.oracle.com/thread/2564233
    2. write following line of code apache conf/Server.xml file
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/TestDB" auth="Container"
                  type="oracle.jdbc.pool.OracleDataSource"
                  description="User database that can be updated and saved"
                  driverClassName="oracle.jdbc.driver.OracleDriver"
                  factory="oracle.jdbc.pool.OracleDataSourceFactory"
                  url="jdbc:oracle:thin:@//172.31.43.207:1521:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"   />
      </GlobalNamingResources>
    and add this line in context.xml file inside <context> tag
    <ResourceLink global="jdbc/TestDB" name="jdbc/TestDB" type="oracle.jdbc.pool.OracleDataSource"/>
    but when i have run application i have got following error
    log-
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    Aug 2, 2013 5:17:21 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    so what is the solution how to create datasource on apche server which suitable for adf application?
    when i test data source using  following code used 1. way as i mentioned above  its running fine bt not for second.
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <sql:query var="rs" dataSource="jdbc/TestDB">
    select empname from pay_emphdr where empcd='JK1306'
    </sql:query>
    <html>
      <head>
        <title>DB Test</title>
      </head>
      <body>
      <h2>Results</h2>
    <c:forEach var="row" items="${rs.rows}">
        Foo ${row.empname}<br/>
    </c:forEach>
      </body>
    </html>
    please help me. it is very urgent.
    thanks in Advance
    Manish

    Hi Lindalnci
    i have already tried  this tutorial and in my post i have defined first way to do using this procedure.
    in that case i have got following exception as i have mentioned above
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection

  • How to configure AD on windows 2012 server for Exchange 2013 internal and external email flow

    Dear Experts,
    I have to configure exchange 2013 on Windows server 2012 STD. Company has registered Static IP addresses and can get the MX record pointing to any of this Static IP.  
    The registered domain name is e.g.  contoso.com. 
    a. What should I use as domain name on AD? contoso.com or contoso.local
    b. Is it recommended to have two different servers  for AD and Exchange?
    c. What should be my connector settings for mail flow?
    d. how can I set 2 email servers in company for load balancing?

    Hi,
    a, I suggest use contoso.com as domain name. It is convenient to add urls into our certificate for internal and external mail flow.
    b, Recommended that installing AD
    and Exchange Server on two separate
    Servers. If Exchange Server downed unfortunately, it can prevent AD server from crushing at the same time.
    c, Found some articles for your reference:
    Configure Mail Flow and Client Access
    http://technet.microsoft.com/en-us/library/jj218640(v=exchg.150).aspx
    Configuring Outbound Mail Flow in Exchange Server 2013
    http://exchangeserverpro.com/configuring-outbound-mail-flow-in-exchange-server-2013/
    d, Load Balancing
    http://technet.microsoft.com/en-us/library/jj898588(v=exchg.150).aspx
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • How to configure JMS queue on OC4J server. Development in JDeveloper 10G

    Hi there,
    I have to configure a JMS for an Asynchronous process in my Application which will be running in Oracle 10G Application Server. Development Environment is Oracle JDeveloper 10G.
    I am facing a problem on how to configure JMS queue.
    Steps Followed are:
    in the <JDevloperHome>/j2ee/home/config
    1. Made the new queue and connection factory's JMS entry in jms.xml.
    2. Specifed the queue in oc4j-connectors.xml.
    3. played around with application.xml
    and tried all combinations, but the message producer always failed to lookup the queue.
    Need help on the steps to follow so that the producer can post the message in the queue.
    Also please help how to configure the MDB to listen to the queue.
    Thanx and Regards
    Subham

    If you were dealing with Oracle 10g app server as opposed to standalone, I might be better able to help you.
    One thing though, when you are configuring your MDB in the orion-ejb-jar.xml file, do not forget to specify attribute listener-threads, otherwise no matter how many beans you have in your MDB pool, only one bean will be listening to the queue. Many listener-threads equal to max number of beans in pool.

  • How to configure webutil in oracle application server 10g (9.0.4)?

    hi,
    i want to configure webutil for oracle application server 10g(9.0.4).
    how should i start?
    i have read the webutil mannual.it is bit tricky.
    i want step by step configuration.
    Any sort of help is appriciateable.
    Regards,
    abbasyazdani

    hi,
    In webutil directory structure,there r four folders,
    {color:#0000ff}doc
    java
    server
    webutil{color}
    and there are three files.
    {color:#0000ff}webutil.pll,webutil.old and create_webutil_db
    {color}
    In webutil mannual,it is written that we should extract this folder to forms90.
    But in forms90, there are {color:#0000ff}server and java folders.
    {color:#000000}should i replace forms90's sever and java folder with webutil's server and java folder?
    what should i do for this ?
    regards
    abbasyazdani
    {color}{color}

  • How to configure solman for Workflow BW Server.

    Dear Experts,
    How to configure Solution Manager workfolw for BW sever. We have done for R/3 systen . it working fine.
    Regards,
    Anand Mehrotra.

    Hi
    might be this helps, this is the basic set up if you use bw server
    [http://wiki.sdn.sap.com/wiki/display/Basis/BIReportingforSolutionManagerEWA_ConfigGuide|http://wiki.sdn.sap.com/wiki/display/Basis/BIReportingforSolutionManagerEWA_ConfigGuide]
    jansi

  • How to configure Gamil SMTP in Project Server?

    In Project Server Alert Settings, I could notice only "smtp Server" , "port" and "from email" only, I want to use my "Gmail" or "Sendgrid" smtp setting in epm. In order to use those accounts i need a place
    to key in the account password. But i don't see any place to do that. Some one could you please help me how to configure this, Do i need to enable / install anything in order to make this work.
    Your reply is much much much helpful, and appreciated.
    Thanks

    Hi Jacob,
    Your email provider needs to accept unauthenticated connections.
    Please refer to this
    similar thread and this
    one also.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How can configure scope options in dhcp server

    Good Night Partners.
    I need configure scope options in dhcp server on mac mini.
    i dont know how to do.
    its my first mac and i confuse.
    Can anybody help me please.

    Are you referring to DHCP Option Codes? If so then this can be done with the DHCP server included with Mac OS X Server. However Apple do not provide a tool for doing this nor for encoding the values in the required format.
    What you will need to do is edit the DHCP Server configuration file manually using a text editor. This configuration file is located at /etc/bootpd.plist before you do this I advise having a read of the Unix man page for bootpd (the DHCP server software Apple use).
    You can use a utility I have written to generate the required information and then paste this in to /etc/bootpd.plist it can be downloaded from -
    http://web.me.com/jelockwood/MyUtilities/dhcp.html

  • How to configure SOA in Integrated WLS Server for JDEV 11.1.1.1.0

    Hi,
    I am trying to deploy a SOA Application but it says No SOA Configured targets found. How can I configure SOA on Integrated Weblogic Server in JDeveloper.
    Thanks

    Okay, so the Admin server controls the connection. Is there a screen that shows this? My JDev is reporting that the soa server does not exist, though the WebLogic administrator shows that it's there.
    I have checked the AdminServer.log and the soa_server1.log files and found nothing that would indicate an error. I also noticed there is something called a Work Manager. wm/SOAWorkManager This guy is pointing to just the soa server.

  • How to configure USER CAL on SQL server 2008

    how to configure or Add User CAL on SQL server 2008?
    pls let me know the process

    Hello,
    There is no CAL management in SQL Server, you have the licenses only "on paper".
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to Configure the Netweaver CE UDDI Server and Registry

    Hi,
    I'm trying to configure the UDDI registry in Netweaver CE (trial version 7.1 SR 1) following the <a href="http://help.sap.com/saphelp_nwce10/helpdata/en/45/47e8e91587072fe10000000a155369/frameset.htm">SAP Help documentation</a>. But as the help is not detailed not sure whether I'm doing it correctly. I can access the Service Registry by http://<host>:<port>/sr but not sure whether everything is fine. Also I want to publish Enterprise Services in the registry. As it's not possible to do that from ABAP 7.0 WebAS (doesn't not support UDDI v3) I want to do it via the UDDI client. How to configure the UDDI client by providing the Inquiry URL, Publish URL, etc in the settings?
    Please help me if anyone has any information regarding this.
    Thanks,
    Dipankar

    I am working through the same issues and have not found all of the answers.  However, this may get you closer.
    See http://help.sap.com/saphelp_nwce10/helpdata/en/45/635dd614d73bdbe10000000a1553f7/content.htm for some physical destinations that have to be set up for Visual Composer.
    You can also connect to the registry in NetWeaver Developer Studio by launching the Web Services Explorer from the J2EE Perspecive.  See the help for more details.

  • Cisco NAC: How to configure the NGS as Radius Server & NAC Manager as Raidus Clients !!!

    Hi,
    Kindly let me know that how to configure the NGS (Version 2.0.3) as a Radius Server while NAC Manager (Version 4.8.2) as a Radius Client...
    Moreover,
    1) I want to Create the two User Roles (Guest1 & Guest2) on NGS.
    2) When sponsor will create the users, user will belong to either of roles.
    3) NAC Manager will have an authentication provider (Radius) with the default Role "Deny Role" but users belongs to "User Role = or Group = Guest1" will fall into "Guest1" Role while User Role = or Group = Guest2" will fall into "Guest2" Role.
    I need an assistance to configure this scenario....
    Please advise me.
    BR,
    Mubasher Sultan

    Hi,
    Any idea or suggestion...
    BR,
    Mubasher Sultan

Maybe you are looking for