Size: 522
Comment:
|
Size: 577
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
ssh tunel ssh -L | === ssh tunnel ssh -L === |
Line 6: | Line 6: |
1. install sshd package on your local machine 2. add a line in /etc/sshd/sshd_config |
1. install sshd package on your local machine 1. add a line in /etc/sshd/sshd_config{{{ |
Line 9: | Line 9: |
3. restart sshd service 4. ssh <oracle db host> -L 8081:localhost:8080 5. login to db web admin console |
}}} 1. restart sshd service 1. ssh to start tunnel{{{ ssh <oracle db host> -L 8081:localhost:8080}}} 1. login to db web admin console{{{ |
Line 13: | Line 15: |
6. login with 'SYS' account, then click the 'Administration' button, 'Tasks - Manage HTTP Access' , then enable HTTP accesss from remote clients. |
}}} 1. login with 'SYS' account, then click the 'Administration' button, 'Tasks - Manage HTTP Access' , then enable HTTP access from remote clients. |
ssh tunnel ssh -L
How to access the Database Home Page "http://127.0.0.1:8080/apex" remotely using ssh tunnel.
- install sshd package on your local machine
add a line in /etc/sshd/sshd_config
AllowTcpForwarding yes
- restart sshd service
ssh to start tunnel
ssh <oracle db host> -L 8081:localhost:8080
login to db web admin console
http://localhost:8081/apex
- login with 'SYS' account, then click the 'Administration' button, 'Tasks - Manage HTTP Access' , then enable HTTP access from remote clients.