How not to reveal your MySQL DB login/password when sharing code on GitHub or BitBucket?
[This article was first published on R Chronicle, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Solution: use your ~/.my/cnfWant to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Inside your ~/.my.cnf file define the connection parameters to your databases. For example, here I define two groups called local and toto:
[local] user = root password = ultra_secret host = localhost [toto] user = capitaine_flam password = galaxy host = milky.way.netThis allow me to connect to the databases defined in the group from R using the following command:
This trick also apply when you are writing report using knitR to create Sweave or markdown reports. Your password is stored in clear in your .my.cnf file. So as long as your file system is not compromised you are fairly safe.
To leave a comment for the author, please follow the link and comment on their blog: R Chronicle.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.