Is it possible to run commands on another Unix server from an Oracle apex application ? Oracle apex and Unix are on different machines .
-
If you deploy an API Rest into UNIX server, you can reach it calling the endpoints created. But you'll need appropriate permissions on UNIX. Don't forget to create an ACL (Access Control List) in your database.Enrique Flores– Enrique Flores2020-05-25 19:19:27 +00:00Commented May 25, 2020 at 19:19
Add a comment
|
2 Answers
Apex is just a layer on top of the database.
- From within the oracle database you can execute OS commands, so you could execute a script that connects from your database server over ssh.
- or you could wrap your unix command in a cgi script and have it run of http. In pl/sql you could then invoke it via apex_web_service.make_rest_request
Make sure you check security