chore: Standardize Oracle tunnel port to 1521

Changed SSH tunnel local port from 1526 to 1521 to match Oracle's
default port, simplifying configuration across environments.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-04 02:49:25 +02:00
parent 02a8c8682c
commit 9ced8c49ba
8 changed files with 12 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ SSH_SERVER="10.0.20.121"
SSH_PORT="22"
SSH_USER="root"
SSH_KEY="$HOME/.ssh/id_rsa" # Use WSL user's SSH key for direct connection
LOCAL_PORT="1526" # Same port as production tunnel for backend compatibility
LOCAL_PORT="1521" # Same port as production tunnel for backend compatibility
REMOTE_HOST="localhost" # Oracle runs on localhost inside LXC (Docker container)
REMOTE_PORT="1521"
TUNNEL_PID_FILE="/tmp/roa_ssh_tunnel_test.pid"