Differences between revisions 7 and 9 (spanning 2 versions)
Revision 7 as of 2014-03-07 18:41:51
Size: 577
Editor: frank
Comment:
Revision 9 as of 2014-03-07 18:42:42
Size: 623
Editor: frank
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from Tech/SSHTunel
Line 12: Line 13:
ssh <oracle db host> -L 8081:localhost:8080}}}      ssh <oracle db host> -L 8081:localhost:8080}}}
Line 14: Line 15:
    http://localhost:8081/apex   http://localhost:8081/apex

ssh tunnel ssh -L

How to access the Database Home Page "http://127.0.0.1:8080/apex" remotely using ssh tunnel.

  1. install sshd package on your local machine
  2. add a line in /etc/sshd/sshd_config

         AllowTcpForwarding yes
  3. restart sshd service
  4. ssh to start tunnel

         ssh <oracle db host> -L 8081:localhost:8080
  5. login to db web admin console

         http://localhost:8081/apex
  6. login with 'SYS' account, then click the 'Administration' button, 'Tasks - Manage HTTP Access' , then enable HTTP access from remote clients.

Tech/SSH (last edited 2014-03-07 18:58:38 by frank)