Install MySQL with Yum under Linux

Source: Internet
Author: User
Tags mysql client

1. Install client and server side

Verify that MySQL is installed:

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

To see if you have an installation package:

?
1 yum list mysql*

To install the MySQL client:

?
1 yum install mysql

To install the MySQL server side:

?
12 yum install mysql-serveryum install mysql-devel

2. Start and stop settings

Database Character Set settings
MySQL config file/etc/my.cnf add Default-character-set=utf8
To start the MySQL service:

?
1 service mysqld start

or/etc/init.d/mysqld start.
Set boot up:

?
1 chkconfig -addmysqld

See if the boot setting is successful

?
1 chkconfig --list | grep mysql*

Mysqld 0: Off 1: Off 2: Enable 3: Enable 4: Enable 5: Enable 6: Off
To stop the MySQL service:

?
1 service mysqld stop

3, login and forget to change the password

To create a root administrator:

?
1 mysqladmin -u root password666666

Login:
Mysql-u root-p
If you forget your password, execute the following code

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

4. Allow Remote access settings

Port number for open firewall
MySQL Add permission: The user table in the MySQL library has a new record of "%" and the user is "root".

?
12 use mysql;UPDATEuser SET `Host` = ‘%‘ WHERE `User` = ‘root‘LIMIT 1;

% means all IP access is allowed


5. Several important directories of MySQL

(a) Database directory
/var/lib/mysql/
(b) configuration files
/usr/share/mysql (mysql.server command and configuration file)
(c) Related orders
/usr/bin (Mysqladmin mysqldump and other commands)
(d) Startup scripts
/etc/rc.d/init.d/(startup script file for MySQL directory)

Install MySQL with yum under Linux

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.