0% found this document useful (0 votes)
16 views4 pages

Top Three Concepts To Understand Before Hiring A MySQL Tutor

The document provides information about MySQL including what it is, its features, and how to install it on Windows and Linux. It states that MySQL is an open-source relational database management system typically running on port 3306. It also discusses MySQL features like being fully multithreaded, working on multiple operating systems and with many programming languages, and having ACID properties. The document then provides steps for installing MySQL on Windows and Linux and changing the root password.

Uploaded by

urban tution
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views4 pages

Top Three Concepts To Understand Before Hiring A MySQL Tutor

The document provides information about MySQL including what it is, its features, and how to install it on Windows and Linux. It states that MySQL is an open-source relational database management system typically running on port 3306. It also discusses MySQL features like being fully multithreaded, working on multiple operating systems and with many programming languages, and having ACID properties. The document then provides steps for installing MySQL on Windows and Linux and changing the root password.

Uploaded by

urban tution
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

What is MySQL?

 
MySQL is an open-source, relational database management system typically running at
3306 port as default.Since MySQL is open source ,it allows programmers to customize
MySQL to fit according to their requirements.
It supports standard structured query language. It is used by a large number of web
applications.
Students should be aware about terms like database and computer programming
language,As these are prerequisites of learning MySQL.Before hiring a ​MySQL tutor​ you
should know the basics of MySQL database , Which helps you to understand better from
the very beginning of course.
1.Salient Features of MySQL :-
• MySQL is fully multithreaded and can use multiple CPUs for processing.
•MySQL works on various Operating systems and with many programming languages like
Java,PHP,C,C++
• MySQL provides Innodb as a transactional storage engine that has
ACID(Atomicity,Consistency, Isolation, and Durability) property.
• MySQL has a high-speed thread-based memory allocation system.
• MySQL supports an in-memory heap table.
• MySQL Server works in client/server or embedded systems.
• MySQL supports multiple platforms.
2.Mysql - installation

Mysql ​- installation

For Windows

Visit ​https://dev.mysql.com/downloads/installer/​ ​to download offline or online package.Unzip


the package in any of your computer drives and you will find a setup.exe file which needs to be
executed.One can change root user password during installation.

After installation MYSQL service can be started from windows services as well as from
command prompt..

Steps to start MySQL database from window services :-

1. Press Window + R and then type services.msc, press OK.


2. Right Click on MySQL service and press start.

For Linux

1.​Open terminal type command “​sudo apt-get install mysql-server​” for ubuntu

Now Type command “​mysql -v​” to find the version of your MySQL and connect to MySQL
Now Type command “​select user from mysql.user​;” to find all your mysql users

2. How to change the password of your root(MySQL) user?

MySQL comes with an empty root password. As soon as MySQL database is installed you need
to change the root password.

Open your mysql terminal and enter

alter user root@localhost identified by ‘YOURPASSWORD’;

Enter command ​“sudo mysql -u root -p​” to enter mysql as root

You can start MySQL server from terminal with command ​mysqld start

You might also like