0

Can I run Oracle Apex application on window's server and connected database to linux server?

More info, I want to run my oracle apex application on windows platform, and i want to have conected database on exadata on linux server. Is it possible to have the network connectivity?

If no, please share the documentation.

Searched everywhere, and ask oracle DBAs

  • APEX itself is PL/SQL packages installed *in the database* and is therefore OS-independent. – pmdba Feb 14 '23 at 23:42

1 Answers1

1

Oracle APEX runs in the database, but you usually connect to it through Oracle REST Data Services (ORDS) that can run standalone where you have Java, or deployed in Tomcat, including Windows. You will access and develop the APEX application with a browser on Windows, or any other place where you have a browser.

Have a look at chapter three in the installation manual for APEX

oisene
  • 176
  • 5
  • Tomcat would be recommended for the ORDS application server. The ORDS stand-alone mode is really only for basic development and not for production use. – pmdba Feb 14 '23 at 23:40
  • I disagree with you on that one; stand-alone has been running stable for a long time. What problems have you been facing? – oisene Feb 15 '23 at 15:30
  • It's not about "problems". That recommendation is right out of Oracle's documentation. It's not intended for production use. – pmdba Feb 15 '23 at 15:52
  • From the latest installation manual, 6.1.1: "Standalone mode is suitable for development use and is supported in production deployments. Standalone mode, however, has minimal management capabilities when compared to most Java EE application servers and may not have adequate management capabilities for production use in some environments." If you don't need this management capabilities, standalone is just fine and supported. – oisene Feb 15 '23 at 16:01