Changes between Initial Version and Version 1 of UoL LAMP HowTo Connect to MySQL Remotely


Ignore:
Timestamp:
11/19/15 14:01:53 (9 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UoL LAMP HowTo Connect to MySQL Remotely

    v1 v1  
     1= UoL LAMP HowTo Connect to MySQL Remotely
     2
     3Tags: [[UoL LAMP Server]] [[HowTo]] [[MySQL]]
     4
     5== Procedure
     6
     71. 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`
     102. Connect using MySQL Workbench or by running the command `mysql -u {username} -p --port=4444 -h 127.0.0.1`
     113. The port `4444` used here can be change to whatever port number is required.
     12
     13[[BackLInks]]