amazon web services - Oracle installation failed on AWS redhat EC2 instance -


i'm trying install oracle on aws redhat instance. follow steps given on url: http://www.davidghedini.com/pg/entry/install_oracle_11g_xe_on , when run config command follows

/etc/init.d/oracle-xe configure

it gives following error.

database configuration failed. /u01/app/oracle/product/11.2.0/xe/config/log details

when check log files shows following errors.

ora-01034: oracle not available process id: 0 session id: 0 serial number: 0

it seems specific issue on aws cloud instance. because of swap memory? or because of port issue? i'm using micro instance on it.

how can through?

this might ec2 security group issue , outbound access network on port being used installer (license check, maybe?).

if ec2 instance tightly locked down, test if it's security group issue adding new outbound security group rule allow tcp traffic out anywhere on internet (0.0.0.0/0)

for example, install might trying hit remote licensing server endpoint via http or https security group doesn't allow traffic out.

perhaps there's 'verbose' flag can run installer can give more info it's failing on? hth


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -