Skip to Main Content

Hardware

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Sun Fire X4150 Server - Operating Systems

CariYuen-OracleMay 25 2015
Oracle Solaris OS for the Sun Fire X4150 Server

Operating Systems Dual Core SupportQuad Core SupportFactory InstalledSold by OracleSupported by Oracle
Solaris 10 10/09 64-bit Yes Yes Yes
Solaris 10 10/08 64-bit Yes Yes Yes
Solaris 10 08/07 and later 32-bit
64-bit
Yes Yes Yes YesYes
OpenSolaris 64-bit Yes Yes Yes YesYes


Oracle Linux for the Sun Fire X4150 Server

Operating System Oracle Certified
Oracle Linux 4 32-bit
64-bit
Yes
Oracle Linux 5 64-bit Yes


Red Hat Enterprise Linux for the Sun Fire X4150 Server

Operating System Red Hat Certified
RHEL 5.3 64-bit Yes
RHEL 4.5 32-bit
64-bit
Yes


SUSE Linux Enterprise Server for the Sun Fire X4150 Server

Operating Systems SUSE Enterprise Linux Certified
SLES 10 SP1 64-bit Yes
SLES 11 64-bit Yes


Microsoft Windows Server for the Sun Fire X4150 Server

Operating Systems Dual Core SupportQuad Core Support
Microsoft Windows Server 2003 Standard and Enterprise Edition 32-bit YesYes
Microsoft Windows Server 2003 Standard and Enterprise Edition 64-bit YesYes
Microsoft Windows Server 2008 Standard, Enterprise, and Datacenter Edition 32-bit YesYes
Microsoft Windows Server 2008 Standard, Enterprise, and Datacenter Edition 64-bit YesYes


VMware ESX Server for the Sun Fire X4150 Server

Operating System VMware Certified
VMware ESX 3.5 U4 32-bit Yes
VMware ESXi 3.5 U4 32-bit Yes
VMware ESX 4.0 64-bit Yes
VMware ESXi 4.0 64-bit Yes

Comments

Shivashish Roy-Humana

Fortunately, I was able to resolve the issue and found that when ORDS Admin is configured via SQL developer it leaves the WORKSPACE id ="" which caused the URL mapping not to work and connect to DB for APEX to launch.  additionally the "updated=######### " was also missing.  so I deleted the URL mapping XML file from the config folder and re-created via command line

java -jar ords.war map-url --type regex http://trn-.* training

I was able to make it work as desired using the REGEX expression . see below

old configuration  1

<?xml version="1.0" encoding="UTF-8"?>
<pool-config xmlns="http://xmlns.oracle.com/apex/pool-config">
<pool name="training" uri-pattern="http://trn-.*" workspace-id=""/>
<pool name="test" uri-pattern="http://tst-.*" workspace-id=""/>
</pool-config>

old configuration  2

<?xml version="1.0" encoding="UTF-8"?>
<pool-config xmlns="http://xmlns.oracle.com/apex/pool-config">
<pool name="training" uri-pattern="http://trn/http://trn-.*"/>
<pool name="test" uri-pattern="http://tst/http://tst-.*"/>
</pool-config>

both the above old configuration didn't work

new configuration

<?xml version="1.0" encoding="UTF-8"?>
<pool-config xmlns="http://xmlns.oracle.com/apex/pool-config">
<pool name="training" uri-pattern="http://trn-.*" updated="2016-10-27T15:39:38.527Z"/>
<pool name="test" uri-pattern="http://tst-.*" updated="2016-10-27T15:39:38.527Z"/>
</pool-config>

1 - 1

Post Details