How to install mysql using yum in linux

Source: Internet
Author: User

How to install mysql using yum in linux
1. Install the client and server

Check whether mysql is installed:

?
12 yum list installed mysql*rpm -qa | grep mysql*

Check whether the installation package exists:

?
1 yum list mysql*

Install the mysql client:

?
1 yum install mysql

Install the mysql server:

?
12 yum install mysql-serveryum install mysql-devel

 

2. Start and Stop settings

Database Character Set settings
Add default-character-set = utf8 to the mysql configuration file/etc/my. cnf.
Start the mysql service:

?
1 service mysqld start

Or/etc/init. d/mysqld start
Set boot start:

?
1 chkconfig -add mysqld

Check whether startup setting is successful

 

?
1 chkconfig --list | grep mysql*

 

Mysqld 0: Disable 1: Disable 2: Enable 3: Enable 4: Enable 5: Enable 6: Disable
Stop mysql service:

?
1 service mysqld stop

 

3. login and forgot to change the password

Create a root administrator:

?
1 mysqladmin -u root password 666666

Logon:
Mysql-u root-p
If you forget the password, run the following code:

?
123456 service mysqld stopmysqld_safe --user=root --skip-grant-tablesmysql -u rootuse mysqlupdate user set password=password("666666") where user="root";flush privileges;

 

4. Allow Remote Access settings

Port Number of the open Firewall
Mysql adds permissions: the user table in the mysql database adds a record with host as "%" and user as "root ".

?
12 use mysql;UPDATE user SET `Host` = '%' WHERE `User` = 'root' LIMIT 1;

% Indicates that all ip addresses are allowed to access


5. Several important mysql Directories

(A) Database directory
/Var/lib/mysql/
(B) configuration file
/Usr/share/mysql (mysql. server command and configuration file)
(C) Related commands
/Usr/bin (commands such as mysqladmin mysqldump)
(D) Startup Script
/Etc/rc. d/init. d/(directory for starting the script file mysql)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.