Reputation: 37
I neva worked with solaris or Linux before, and would like to find out how i can install oracle application express using command line in solaris, after i have installed my oracle database 11g in solaris aswell.
I already have an idea of how to install the database.
Upvotes: 0
Views: 729
Reputation: 792
i agree with the comments above, the apex installation guide on the oracle site is easy to follow, basically, you will have to:
and that's it :)
Upvotes: 1
Reputation: 1
the documentation on the oracle website is well done. i installed apex on Solaris 10 and it works fine
basically, you just need to execute a few SQL scripts (create some users, import data), and afterwards run a java program to start the apex listener
check the documentation, it should be understandable even without too much of Solaris knowledge
Upvotes: 0
Reputation: 8626
Installation of Application Express (APEX) is largely Operating System agnostic. The process is based around running a number of scripts. When performing APEX installations, my primary tool is SQL Plus.
Depending on the version\edition of the Oracle Database you install, you probably already have a version of APEX ready to use. You can check which version of APEX your database has by running the following sql statement:
select version_no from apex_release
More information about installing Apex can be found in the documentation.
Upvotes: 0