MySQL downloads for all platforms are available at MySQL Downloads. Select the version of MySQL Community Server that you need and the corresponding platform. MySQL - The MySQL server. You need this option unless you only want to connect to a MySQL server running on another machine. Installation steps: First, let's introduce the installation steps of the rpm package: [root@host]# rpm -i MySQL-5.0.9-0.i386.rpm MySQL-5.0.9-0.i386.rpm is the name of the file you downloaded. The above process of installing the MySQL server will create a MySQL user and a MySQL configuration file my.cnf. Tar package installation process: Go in and click community, then click MySQL Community Server As shown in the figure, position 1 is to select the previous version. Select the appropriate version according to your needs. After downloading, transfer the tarball to the server. 1. Unzip #Unzip tar -zxvf mysql-5.6.33-linux-glibc2.5-x86_64.tar.gz #Copy the unzipped mysql directory cp -r mysql-5.6.33-linux-glibc2.5-x86_64 /usr/local/mysql 2. Add users and user groups #Add user group groupadd mysql #Add user mysql to user group mysql useradd -g mysql mysql 3. Installation cd /usr/local/mysql/ #Create data folder mkdir ./data/mysql #Change file permissions chown -R mysql:mysql ./ #Install and specify the user and data folder location./scripts/mysql_install_db --user=mysql --datadir=/usr/local/mysql/data/mysql #Copy mysql to the service automatic startup cp support-files/mysql.server /etc/init.d/mysqld #Change the permissions to 755, that is, root can execute chmod 755 /etc/init.d/mysqld #Copy the configuration file to etc, because the default startup first loads the configuration file from etc. cp support-files/my-default.cnf /etc/my.cnf #Modify the startup script vi /etc/init.d/mysqld #Modifications: basedir=/usr/local/mysql/ datadir=/usr/local/mysql/data/mysql #Start the service service mysqld start #Test connection ./mysql/bin/mysql -uroot #Add environment variables and edit /etc/profile so that you can use mysql commands anywhere export PATH=$PATH:/usr/local/mysql/bin #Start mysql service mysqld start #Shut down mysql service mysqld stop #Restart mysql service mysqld restart #View the running status service mysqld status 4. Question After completion, an error message is reported when using the tool to connect remotely. This is because the user permissions for the remote connection are not given. Solution 1: Change the 'host' entry in the 'user' table of the 'mysql' database from 'localhost' to '%'. use mysql; select 'host' from user where user='root'; update user set host = '%' where user = 'root'; flush privileges; Solution 2: Direct authorization GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION; Wonderful topic sharing: MySQL different versions installation tutorial MySQL 5.7 installation tutorials for various versions MySQL 5.6 installation tutorials for various versions mysql8.0 installation tutorials for various versions The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: js canvas to realize the Gobang game
>>: Hadoop 2.x vs 3.x 22-point comparison, Hadoop 3.x improvements over 2.x
Long story short, today we will talk about using ...
1. Introduction Some time ago, there were a serie...
Table of contents 1. Simple retrieval of data 2. ...
After I set up the PHP development environment on...
Table of contents Written in front 1. Ngixn image...
<br />In order to manage the vehicles enteri...
<br />Once, Foyin and Mr. Dongpo were chatti...
Preface In addition to the default built-in direc...
1. Environmental Description (1) CentOS-7-x86_64,...
What is ELK? ELK is a complete set of log collect...
Preface You may often receive warning emails from...
Debug branch During the normal development of a p...
What is React React is a simple javascript UI lib...
1 Background Recently, some performance issues ha...
1. Introduction to Macvlan Before the emergence o...