R - Connect to MySQL using VPN in R -


i want run r script on remote server depends on mysql connection requires vpn. on local machine using cisco vpn client.

is there way facilitate mysql connection r application vpn required?

more specifically, i'm interested in facilitating either knitr script produce html on remote server or deploy shiny app on remote server, both need mysql queries run against server via vpn. thoughts on process or work-arounds appreciated.

thanks help.

you may able use putty connect vpn. through ms windows 7/8 ***once connected via putty connect mysql:

yourvpndb <- dbconnect( mysql()  , user="enter database user name here"  , password=" enter database password here "  , db=" enter name of database here "  , host="127.0.0.1" ) 

i have not tried should work in theory :)


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -