Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix grammar mistakes and change wording #727

Merged
merged 3 commits into from
Jun 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions MYSQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -98,7 +98,7 @@ $ mysql -u <username> -p <password>

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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -167,10 +167,9 @@ $ 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"`_

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.
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
Expand Down