01- Intro / Install

01

Install mySql Community Server https://dev.mysql.com/downloads/mysql/

02

install popSql https://popsql.com/

02b

I ran into a problem the server kept starting and stopping. I found an answer here , stackoverflow

and ran the following commands to fix it

sudo /usr/local/mysql/support-files/mysql.server start
sudo /usr/local/mysql/support-files/mysql.server stop
sudo /usr/local/mysql/support-files/mysql.server restart

06

Type in the command

mysql -u root -p

THIS IS WHERE we type the password we created at the end of installation, seen at the end of the previous lesson, our pass word is

password

08

Create a database and name it, remember the name

create database db1;

You can run SQL command right here in the terminal but we will install and use popSql