Changes between Initial Version and Version 1 of UoL LAMP HowTo Connect to MySQL Remotely
- Timestamp:
- 11/19/15 14:01:53 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UoL LAMP HowTo Connect to MySQL Remotely
v1 v1 1 = UoL LAMP HowTo Connect to MySQL Remotely 2 3 Tags: [[UoL LAMP Server]] [[HowTo]] [[MySQL]] 4 5 == Procedure 6 7 1. First create a ssh tunnel using one of these methods: 8 a. Putty 9 b. Run the command `ssh {username}@login{xx}.lamp.le.ac.uk -L 4444:127.0.0.1:3306 -N` 10 2. Connect using MySQL Workbench or by running the command `mysql -u {username} -p --port=4444 -h 127.0.0.1` 11 3. The port `4444` used here can be change to whatever port number is required. 12 13 [[BackLInks]]