Skip to content

Instantly share code, notes, and snippets.

View ibushong's full-sized avatar

Ian Bushong ibushong

View GitHub Profile
@sshymko
sshymko / install_mysql_client.sh
Last active March 14, 2024 20:10
Install MySQL 5.7 client on Amazon Linux 2
#!/bin/sh
sudo yum install -y https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
sudo yum install -y mysql-community-client
@blakesaunders
blakesaunders / homebrew_multiple_mysql_versions.md
Last active October 11, 2018 02:21 — forked from benlinton/multiple_mysql_versions_for_development.md
Managing Multiple MySQL Versions with Homebrew

Multiple MySQL Versions with Homebrew

For Homebrew version 1.6.8.

brew -v # => Homebrew 1.6.8

Install the current version of mysql:

# Install current mysql version

brew install mysql