Installing Mysql On Windows Os: Connecting To
Installing Mysql On Windows Os: Connecting To
Windows OS
Connecting to
Local Instance
and
UNBMySQL
Pre-requisite(s)
• Check installed programs on OS (Control Panel Program & Features)
• Visual Studio C++ Redistributable 2015 – 2019
MySQL Community Downloads
• dev.mysql.com/download
Setup Type (Developer)
Setup Type (Server)
Setup Type (Client)
Setup Type (Full)
Setup Type (Custom)
Setup Type (Custom – contd.)
Setup Type (Custom – contd.)
Setup Type (Custom – contd.)
Setup Type (Custom – contd.)
Setup Type (Custom – contd.)
Standalone vs. InnoDB Cluster
Server Configuration (Protocol, port, …)
info1103.cs.unb.ca
Enter MySQL credential
(provided by instructor)
Connect to MySQL in UNB – Test connection and save
List of databases
Connect to university
ssh hmahdikh@fcslinux.cs.unb.ca
* enter university password
Connect to lab (ID415) and machine(10)
ssh hmahdikh@id415m10.cs.unb.ca
* enter university password
Conect to MySQL
mysql –h info1103.cs.unb.ca –u hmahdikh –p
* enter university MySQL password
Connect to database (Ch01_Text )
use Ch01_Text;
See table inside the database
show tables;
See data inside the table (AGENT)
SELECT * FROM AGENT;