In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly introduces "how to install MySQL5.6 in RPM under CentOS6". In daily operation, I believe many people have doubts about how to install MySQL5.6 in RPM under CentOS6. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts about "how to install MySQL5.6 in RPM under CentOS6". Next, please follow the editor to study!
Install MySQL5.6 in RPM mode under CentOS 6
1. Download the RPM package for Linux, such as the RPM package for CentOS6.7_64, as follows:
[root@mysql ~] # ll
The total dosage is 113808
-rw-. 1 root root 1434 December 13 18:47 anaconda-ks.cfg
-rw-r--r--. 1 root root 42556 December 13 18:47 install.log
-rw-r--r--. 1 root root 10033 December 13 18:45 install.log.syslog
-rw-r--r--. 1 root root 23135399 December 13 18:56 MySQL-client-5.6.25-1.linux_glibc2.5.x86_64.rpm
-rw-r--r--. 1 root root 4586217 December 13 18:56 MySQL-devel-5.6.25-1.linux_glibc2.5.x86_64.rpm
-rw-r--r--. 1 root root 88715219 December 13 18:56 MySQL-server-5.6.25-1.linux_glibc2.5.x86_64.rpm
two。 Check MySQL and related RPM packages for installation, and if any, remove (rpm-e name)
[root@mysql ~] # rpm-qa | grep-I mysql
Mysql-libs-5.1.73-5.el6_6.x86_64
[root@mysql ~] # yum-y remove mysql-libs*
Loaded plug-ins: fastestmirror, refresh-packagekit, security
Set up the removal process
Resolve dependencies
.
Over!
3. Install MySQL
[root@mysql] # rpm-ivh MySQL-server-5.6.25-1.linux_glibc2.5.x86_64.rpm
Preparing... # [100%]
1:MySQL-server # # [100%]
Warning: user mysql does not exist-using root
Warning: group mysql does not exist-using root
Support MySQL by buying support/licenses at http://shop.mysql.com
New default config file was created as / usr/my.cnf and
Will be used by default by the server when you start it.
You may edit this file to change server settings
[root@mysql] # rpm-ivh MySQL-devel-5.6.25-1.linux_glibc2.5.x86_64.rpm
Preparing... # [100%]
1:MySQL-devel # # [100%]
[root@mysql] # rpm-ivh MySQL-client-5.6.25-1.linux_glibc2.5.x86_64.rpm
Preparing... # [100%]
1:MySQL-client # # [100%]
4. Initialize MySQL and set password
[root@mysql ~] # / usr/bin/mysql_install_db-- mysql_install_db script to generate the account and corresponding permission permission table
WARNING: The host 'mysql' could not be looked up with / usr/bin/resolveip.
This probably means that your libc libraries are not 100% compatible
. . Omit the output.
WARNING: Default config file / etc/my.cnf exists on the system
This file will be read by default by the MySQL server
If you do not want to use this, either remove it, or use the
-- defaults-file argument to mysqld_safe when starting the server
[root@mysql ~] # service mysql start
Starting MySQL. SUCCESS!
[root@mysql ~] # cat / root/.mysql_secret-- check the root account password
# The random password set for the root user at Tue Dec 13 18:59:06 2016 (local time): 7MhtyX3aZEl9OUf8
[root@mysql] # mysql-uroot-p
Enter password:-- (copy and paste 7MhtyX3aZEl9OUf8 here)
Welcome to the MySQL monitor. Commands end with; or\ g.
Your MySQL connection id is 2
Server version: 5.6.25
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
Affiliates. Other names may be trademarks of their respective
Owners.
Type 'help;' or'\ h' for help. Type'\ c'to clear the current input statement.
Note: the appearance of mysql > indicates that everything is going well.
Mysql > SET PASSWORD = PASSWORD ('123456');-- set the password to 123456
5. Allow remote login
Mysql > use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with-A
Database changed
Mysql > select host,user,password from user
+-- +
| | host | user | password | |
+-- +
| | localhost | root | * 6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
| | mysql | root | * 6D95CDA252C85345E8BC1C4168E962D3949C30F9 |
| | 127.0.0.1 | root | * 6D95CDA252C85345E8BC1C4168E962D3949C30F9 |
| |:: 1 | root | * 6D95CDA252C85345E8BC1C4168E962D3949C30F9 |
+-- +
4 rows in set (0.00 sec)
Mysql > update user set password=password ('123456') where user='root'
Query OK, 3 rows affected (0.00 sec)
Rows matched: 4 Changed: 3 Warnings: 0
Mysql > update user set host='%' where user='root' and host='localhost'
Query OK, 1 row affected (0.01sec)
Rows matched: 1 Changed: 1 Warnings: 0
Mysql > flush privileges
Query OK, 0 rows affected (0.00 sec)
Mysql > exit
6. Set Boot self-boot
[root@mysql ~] # chkconfig mysql on
[root@mysql ~] # chkconfig-- list | grep mysql
Mysql 0: off 1: off 2: enable 3: enable 4: enable 5: enable 6: close
7. Default installation location of MySQL
/ var/lib/mysql/ # database directory
/ usr/share/mysql # configuration file directory
/ usr/bin # related command directory
/ etc/init.d/mysql # startup script
8. Change the MySQL directory and character set
[root@mysql ~] # cd / home-- create a data directory under the home directory
[root@mysql home] # mkdir data
[root@mysql ~] # service mysql stop-- stop the MySQL service process
Shutting down MySQL.. SUCCESS!
[root@mysql home] # mv / var/lib/mysql / home/data-- move the entire directory / var/lib/mysql to / home/data
If there is no my.cnf configuration file in the / etc/ directory, please find the * .cnf file under / usr/share/mysql/ and copy one of them to / etc/ and rename it to my.cnf).
[root@mysql ~] # cp / usr/share/mysql/my-default.cnf / etc/my.cnf-- modify the configuration file location
Configure / etc/my.cnf file, modify the data storage path, mysql.sock path and default encoding utf-8.
[client]
Password = 123456
Port = 3306
Default-character-set=utf8
[mysqld]
Port = 3306
Socket = / home/data/mysql/mysql.sock
Character_set_server=utf8
Character_set_client=utf8
Collation-server=utf8_general_ci
# (note that mysql is default after installation in linux: table names are case-sensitive, column names are not case-sensitive; 0: case-sensitive, 1: case-insensitive)
Lower_case_table_names=1
# (set the maximum number of connections. By default, the maximum number of connections allowed by 151 MySQL server is 16384;)
Max_connections=1000
[mysql]
Default-character-set = utf8
Socket = / home/data/mysql/mysql.sock
View character set
Show variables like'% collation%'
Show variables like'% char%'
9. Modify MySQL startup script / etc/rc.d/init.d/mysql
Finally, you need to modify the MySQL startup script / etc/rc.d/init.d/mysql to change the path to the right of the equal sign in the datadir=/var/lib/mysql line to your actual storage path: home/data/mysql.
[root@test1 etc] # vi / etc/rc.d/init.d/mysql
# datadir=/var/lib/mysql (comment this line)
Datadir=/home/data/mysql (plus this line)
10. Restart the MySQL service
[root@mysql ~] # service mysql restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
OK is a success.
At this point, the study on "how to install MySQL5.6 with RPM under CentOS6" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.