From 2b025d548b466850dd37a94719ca09fea94fe3be Mon Sep 17 00:00:00 2001 From: fwSmit Date: Wed, 19 Jun 2019 15:42:57 +0200 Subject: [PATCH 1/3] Fix grammar mistakes and change wording --- MYSQL.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/MYSQL.md b/MYSQL.md index 626192313..ffa3eace3 100644 --- a/MYSQL.md +++ b/MYSQL.md @@ -18,7 +18,7 @@ $ bundle exec bundle install **Homebrew setup:** -(Note: alternative to Homebrew is [mySQL community server](https://dev.mysql.com/downloads/mysql/5.7.html#downloads) - available for all systems) +(Note: An alternative to Homebrew is [mySQL community server](https://dev.mysql.com/downloads/mysql/5.7.html#downloads) - available for all systems) Dependencies: @@ -98,7 +98,7 @@ $ mysql -u -p Permission issues above? -(note these commands also fix the error: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)) +(Note: these commands also fix the error `Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)`) ```Bash @@ -135,7 +135,7 @@ mysql> exit Reconfirm Access -(whenever want to access the mysql db locally, need to run this login first - suggest aliasing in bash profile) +Whenever you want to access the mysql db locally, you need to run this login first. It might be useful to alias this in your bash profile. ```Bash @@ -167,9 +167,8 @@ $ GRANT ALL ON *.* TO 'mapknitter' WITH GRANT OPTION; ``` -_If you get the error `Access denied for user 'root'@'localhost'" error"`_ +_If you get the error `Access denied for user 'root'@'localhost'" error"`_ , maybe you forgot your root password or was not prompted when installing. -Meaning maybe you forgot your root password or was not prompted when installing. You might be having some dependencies of mysql in your machine. You need to remove all the dependencies and reinstall mysql a fresh. Use the following commands to remove mysql and all its dependencies From fce86d65829d265db0b6ea98b0e7f5b68e491ae2 Mon Sep 17 00:00:00 2001 From: fwSmit Date: Wed, 19 Jun 2019 16:32:45 +0200 Subject: [PATCH 2/3] Slight grammar changes Co-Authored-By: Divya Baid <32747809+divyabaid16@users.noreply.github.com> --- MYSQL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MYSQL.md b/MYSQL.md index ffa3eace3..3082fbed0 100644 --- a/MYSQL.md +++ b/MYSQL.md @@ -98,7 +98,7 @@ $ mysql -u -p Permission issues above? -(Note: these commands also fix the error `Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)`) +(Note: These commands also fix the error - `Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)`) ```Bash From 53abe8ee7abefe525fb59288e60bb0f0350b5e5e Mon Sep 17 00:00:00 2001 From: fwSmit Date: Wed, 19 Jun 2019 16:36:06 +0200 Subject: [PATCH 3/3] Revert a change --- MYSQL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MYSQL.md b/MYSQL.md index 3082fbed0..c4969445f 100644 --- a/MYSQL.md +++ b/MYSQL.md @@ -167,9 +167,9 @@ $ GRANT ALL ON *.* TO 'mapknitter' WITH GRANT OPTION; ``` -_If you get the error `Access denied for user 'root'@'localhost'" error"`_ , maybe you forgot your root password or was not prompted when installing. +_If you get the error `Access denied for user 'root'@'localhost'" error"`_ -You might be having some dependencies of mysql in your machine. You need to remove all the dependencies and reinstall mysql a fresh. +Meaning maybe you forgot your root password or was not prompted when installing. You might be having some dependencies of mysql in your machine. You need to remove all the dependencies and reinstall mysql a fresh. Use the following commands to remove mysql and all its dependencies ```Bash