Running a web server along with Oracle XE - Port 8080 problem & solution

Hi,
My company is tight on computing power so we're using an older machine to run our Oracle XE instance and our Apache web server. The Apache server is using port 80 to host the website, while Oracle XE is using port 8080 for APEX.
Initially this did not pose any problems, but as when our consultants were at clients sites they weren't able to access port 8080. This was a huge problem for us since we use APEX for our time sheet system.
I could have used a 2nd computer to host the APEX engine on port 80 (if you want to know how to do this just search the forum), but I didn't have an extra machine at my disposal.
After doing some reading I found that I could modify the Apache httpd.conf file (/etc/httpd/conf/httpd.conf for linux systems) to handle this. I thought I'd post my results for others in the same situation:
- #Search for the mod_proxy section and add the following:
- ProxyRequests Off
- #This maps the :8080/apex to :80/apex
- ProxyPass /apex http://www.mydomain.com:8080/apex
- ProxyPassReverse /apex http://www.mydomain.com:8080/apex
- #This maps the :8080/i/ (for images) to :80/apex.
- #YOU NEED THIS since all images and js calls reference the /i/ directory
- ProxyPass /i http://www.mydomain.com:8080/i
- ProxyPassReverse /i http://www.mydomain.com:8080/i
- #Search for Alias and add the following:
- #This is optional. It will allow a simple url for your users to access a common application
- Redirect /myapps http://www.mydomain.com/apex/f?p=100
Of course you can add some restirctions, and verification for the apache module to the conf above, but I thought I'd keep it basic for this example.
Hope this helps others in the same sitation.

Thanks for all the responses I got,
Martin, Thank you
I tried the same advises on my static IP address and it works fine, and very quickly some times, thank you.
My Appache function well and I test a sample webpage.
The domain name did not succeed in my network, may be because its a fake one, I do not really know but I already have an active domain but want to use it when the things will work for sure in all the aspects, and finish the tests.
Your advises were very useful for me.
But I still get the TCP_Error with timeout, some times, I think, the issue is related to the network now (not sure, but the tests takes long time and I prefere to let you know the development for now) , I'm trying to fix the network, as much as I can to get the perfect performance. But I just wonder about the Listener , may be there is something we need to change, still testing
Did you tried your applications onsite from multiple workstations at the same time in Oracle XE using your web server?
Appriciate your help and all other attendants.
Thanks

Similar Messages

  • Which latest web logic server compatible with oracle 11g database

    which latest web logic server compatible with oracle 11g database >is weblogic server 12c is compatible with oracle 11gR2

    current environment= forms and reports 10g and database 10gR2,os windows 32-bit.
    wants to implement and configure as below:
    server1: web-logic server 12c with forms and reports upgrade from 10g to 11g where os 64-bit windows.
    server2: upgrade and migrate  from 10gR2 11gR2 from windows xp to windows 2008-R2.
    how to achieve this.what step should perform first.

  • Trying to run Microsoft Web Server 2008

    I have a computer running Microsoft Web Server 2008 and cannot login from the Internet.
    Everytime I try I keep getting the Actiontes Control Panel.
    I am using the WAN IP address, and DHCP and have tried Port Forwarding via Actiontec Control Panel.
    I am new at this and trying to set up an ecommerce site to sell my Daughter's Homemade Jewelery.
    Help, I don't know where to turn to next. I also signed up with ZoneEdit.com for Domain Name Service.

    You have to set a static ip for your server and port forward to it. Then you use your wan ip with port numer on the end. 000.000.000:80  You shouldn't be seeing your router unless you have remote login turned on or are in DMZ mode.
    If you have residential service you are not aloud to run a server on it. It is in the TOS.

  • I want to use Golden Gate to connect MS SQL Server 2005 with Oracle 10g dat

    I want to use Golden Gate to connect MS SQL Server 2005 with Oracle 10g database. So, i have installed both databases on different pc's on windows platform. MS SQL Server 2005 on windows XP and Oracle 10g on windows 2003.
    I have configure Golden Gate step by step by following oracle guideline:
    http://www.oracle.com/technetwork/articles/datawarehouse/oracle-sqlserver-goldengate-460262.html
    When i run following command on target (oracle 10g):
    replicat paramfile dirprm/inload.prm
    I encounterd following error:
    2012-05-21 20:27:06 ERROR OGG-00014 Unrecognized parameter: USERID. Paramete
    r could be misspelled or unsupported.
    2012-05-21 20:27:06 ERROR OGG-01668 PROCESS ABENDING.
    My INLOAD FILE Content are:
    SPECIALRUN
    END RUNTIME
    USERID gg_user, PASSWORD welcome1
    EXTFILE D:\oracle\gg\dirdat\ex
    SOURCEDEFS D:\oracle\gg\dirdef\emp.def
    MAP hrschema.emp, TARGET gg_user.emp;
    Can you plz suggest me that where i am wrong?
    Thanks advance to all experts.

    amardeep.sidhu wrote:
    That should work, just in case try adding DBLOGIN before USERID
    DBLOGIN USERID x..No needed in the param file i think.its not needed at all you are right, but what else could it be? Besides any special unseen character :P

  • Can Java create HTML tables without running a web server?

    Hello,
    I would like to know if Java can output data into a simple HTML-like table without having to run a web server or jsp etc.
    I want my program to access a database and print records in HTML-like table cells.
    It is actually for an events calendar program, where each event would be printed in a cell (date). There would be a variable number of events per cell (date), with each one being editable.
    I have seen various "web" calendars like this but I want to make it a desktop application so that it is not dependant on the functioning (or non-functioning!) of a web server.
    Can Java do this? I would settle for any type of prewritten table creator (not necessarily HTML) but I do not want Excel type tables or a table where entries must be GUI buttons, such as in Outlook.
    Thank you very much for any idea you may have,
    Cat

    Thank you for the replies :)
    I found something with Jeditorpane (JTextComponent and HTML Text Display) at
    http://msp-of.de/oreilly/books/javaenterprise/jfc/ch03_21.htm
    which looks like what I want. It allows hyperlinks within the table cells and I'm not sure if JTable allows for that. Also, I will want multiple lines and even images (eg moon phases for the calendar) in each cell. I ran the example above and it works great. And yes, it makes use of the HyperlinkListener.
    I don't want to create an HTML file for those who suggested that. I just want the flexibility of HTML formatting withing my standalone Java application.
    I am still not sure why everyone is suggesting JTable though :) So I will look at it some more. The link above also has a turorial on JTable and does say its faster that JEditor pane because it doesn't have to do any HTML rendering. But it doesn't look to me like it can really ever look like a calendar.....
    Thank you again! Being a total Java novice, I am very impressed with how easy JEditorpane is.
    Cat

  • So, noone at all is running SJS Web Server on Solaris 10 Update 6??

    Trying to get some feedback on running SJS Web Server under Solaris 10 Update 6.
    problems?
    "Boy, That was a Mistake"
    "Works Great"
    "No Problems"
    What?? Anything at all...
    Thanks

    Never mind.
    It is a known bug documented on manual " [Solaris 10 10/08 Release Notes, Chapter 2 Solaris Runtime Issues|http://docs.sun.com/app/docs/doc/820-5245/chapter2-1000?a=view] " as shown below.
    The solution is to apply vold patch [138130-01|http://sunsolve.sun.com/search/document.do?assetkey=1-21-138130-01-1].
    Solaris 10 10/08 DVD Media Might Not be Automatically Mounted by vold (6712352)
    The Solaris 10 10/08 DVD does not mount by default during runtime. No error message is displayed.
    Workaround: Perform the following steps:
       1. Become superuser.
       2. Disable vold:
          * On Solaris 10 Systems:
                # svcadm disable -t volfs
          * On Solaris 8 and Solaris 9 systems:
                /etc/init.d/volmgt stop
       3. Mount the media manually by using the # mount -F hsfs path to block device path to mount point command. For example:
          # mount -F hsfs /dev/rdsk/c0t2d0s2 /mnt

  • How to connect to SQL server 2000 with Oracle Form

    Hi,
    I'm looking for the document of how to connect "SQL Server 2000" with Oracle Form 6i. Anyone knows that?

    Shay or other knowledgeable folks,
    Is there a way to utilize the wizard for "Business Tier > ADF Business Components > Business Components from Tables" for SQL Server 2000, 2005 or 2008. I can successfully execute sql via java programmatically or import a table from SQL Server with "Business Tier > ADF Business Components > Entity Object" wizard, but the Business Components from Tables simply doesn't see any tables under any schema. Without the "Business Components from Tables", i don't get the referential constraints imported into the application and to code all those from scratch is just not as elegant. So far i have only utilized the sql server jdbc driver from Microsoft (versions, 1.1, 1.2 and 2.0). Is there an alternative client that i need to use to enable selecting tables from that "Business Components from Tables" wizard. Is this a limitation of SQL Server, the jdbc driver or the wizard itself? Did anybody else experience the same issues? I am using Jdeveloper 11.1.1.0.1 against SQL Server 2005 (currently)
    Thanks,
    Andy

  • Problem in SAP Server installation with Oracle DB

    Hi,
    We are working in SAP Server installation with Oracle DB. After some steps in our Process it is asking for a DVD called RDBMS DVD CLIENT ORACLE. We are trying  to download in Service market place. But we could not  get the Correct DVD for the installation. Please help in this issue. Where do we get the DVD to continue our SAP Server installation.
    We are struck with our SAP Server installation. Please consider this issue as very urgent.
    thanks in advance.
    Regards,
    Mohankumar.G

    Hello Mohan,
    Please specify which installation your are doing otherwise it is difficult to provide you
    the correct path.
    For eg if you are doing NW04's installation then path will be
    downloads->entry by application group->Installations and Upgrades->SAP NetWeaver-> SAP NETWEAVER-> SAP NETWEAVER 2004S->according to OS/DB (there is oracle client cd)select the cd.
    hope it helps..
    Regards,
    Jafer

  • I need to syncronize MS SQL Server 2000 with Oracle DB

    Hello
    I need to syncronize MS SQL Server 2000 with Oracle Database. I have created both DB connections succesfully.
    1. Oracle DB: Oracle (JDBC)
    2. SQL Server JDBC-ODBC (bridge)
    When i create a partner link and select a DB Adapter i try to query SQL Server but it never brings the tables back to me.
    I´ve tried to configure connection 2 (MSSQL) using thrid party but i really don´t know how.
    Driver Class??
    Library?
    Library Name??
    Location??
    Class Path?
    Source Path??
    Doc Path??
    URL??
    help is appreciated. Thank you.
    F.

    Here is my setup:
    Driver Class: com.microsoft.jdbc.sqlserver.SQLServerDriver
    Library: SQLSERVER
    ClassPath: Depends on where your jar file is.
    URL: jdbc:microsoft:sqlserver://your ip address or DNS name goes here.
    The above is how my database connection is defined.
    When I create a partner link and it gets to the screen where it imports tables it takes a while for the "Querying Database Ojects..." to finish. When it does I have not tables. I then select <all schemas> AGAIN and this time I get the tables.
    If you get succeed when you do a test on the connection then I assume the connection is setup right. Perhaps the problem is like mine above and you have to select <all schemas> a second time.

  • SpotifyWebHelper.exe - why is it running a web server on my computer?

    I do not want or need this, I especially don't want Spotify to run a web server on my computer when Spotify isn't even running, or for it to come up on start up even when I tell it not to. Spotify - could you please finally answer us? Why do you find it necessary to do this? It's sketchy at best.

    Thanks, but what if we don't want that functionality? I don't want Spotify running a webserver on my computer that I can't turn off in any way other than manually closing the process. The fact that it constantly adds itself back to startup even when I tell Spotify to not come up on startup is also really bad.
    I can't imagine I'm in the minority here. How many people, once they realize this is being done even when they tell Spotify not to, would continue paying for it?

  • Is it mandatory to install oracle web logic server along with EM?

    Hello All, I am a new user for EM. i was going through the EM installation with OBE. I found that Web logic server installation is thier along with EM but my question is if i am not monitoring my application (which is SAP) with the help of EM then is it compulsory to install web logic server. i want EM only for Database Monitoring.
    Thanks in advance.
    Regards,
    Ajay

    Hello Rob,
    Thank you very much for the answer. I had a check in installation guide from oracle documentation and i came to know that it is a prerequisite for oracle 11 release.
    Thanks & Regards,
    Ajay

  • Server Issue with Oracle and ASP Connection

    We got a new server and are trying to set it up with Oracle Client to allow our web application to connect to the database server. We are getting connection errors, but on the old server, it works fine. We have Windows 2003 and IIS 6.0 on the new server and Win2K and IIS 5.0 on the old server and it's Oracle 8i. Here is the error...
    Err.description=Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation. Provider is unable to function until these components are installed.
    Err.number=-2147467259
    ... We have the client installed, so not sure what to do from this point on. Can it be some type of a sharing issue, or network firewall issue?

    Have you granted the IIS user read & execute access to the %ORACLE_HOME% directory and subdirectories?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Running OEM Web Server on Red Hat AS

    First of all, is such a thing even possible? I have seen conflicting reports that yes, you can run the console from a Unix/Linux environment if you have a Netscape browser, and no, you can't actually RUN the Web Browser from Linux (that only Win environments were supported).
    So who is right? I know that the oem_webstage directory exists, and can rig it so that the emwebsite.html page shows up (essentially by putting all the forms in the htdocs folder), but I don't see any other way to configure it. I can also find no documentation on this on the web. Can anyone who has had experience with this tell me conclusively one way or another?
    I am trying to run Netscape 7.1 on a Red Hat AS system, Oracle 9i. I want to be able to run OEM through the web browser. Sounds simple, but I have hit too many roadblocks.
    Thanks in advance!!
    --Jim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Yes. We do it here. You need a DB for the OEM repository, probably in it's own instance.
    The standalone OEM and webserver ones are almost identical, but there's a few minor differences. (For example, standalone will allow you to add more than 1 DB with the same instance name, but webserver will not).

  • [note] running multiple audio apps along with runescape

    Hello everyone
    For those battling with their java hogging the audio device *and for those who waste their time with runescape *included* *
    Install PulseAudio and follow their instruction, be sure to READ ( and more if you are like me that can't survive without listening to music).
    After installing and testing everything go to console type in:
    $ padsp opera
    Note I use opera, although I'm pretty sure most of you use firefox. Don't bother though, firefox 3.5 will hang on, been looking on how to fix it but not close enough.
    if you run
    $ pavucontrol
    you should be able to see all the applications that uses audio routed onto it and be able to manipulate the volume of each one
    Alright going back to the 'dadsp opera' step, go to runescape.org or whatever site that contains java mini games or application that uses audio, run it and you should be able to get it working. In the 'pavucontrol' it'd be marked as "OSS Emulation"
    Along with this, be sure to check on libflashsupport-pulse (using 32 bit one personally)
    Sorry if this wasn't the section, wanted to post this since it wasn't anywhere. I'd hope it be helpful to others
    Cheers

    Ok, fixed it!  Sorry if I wasted anyone's time.  I converted the struggling clips from aac to mp3 and now everything's good.

  • Connect oracle application server 10g with oracle database 9i

    Hello, I am doing a project with Oracle Application Server and application server can not connect with my Oracle 9i database, how do my version of Oracle Application Server is the 10g, thanks for the help and excuse my English

    Well, now it depends how do you want to access your 9i database from Application Server via J2EE application deployed at Application Server or via Portal.
    For J2EE application, you can use connect string for your 9i database in datasources.xml of J2EE app.
    For Portal application, again it depends what you want to do - create an data entry application or just want to fetch a report based on 9i database.
    Hope I have provided answer to your question.
    Regards.

Maybe you are looking for