Linux uses binary mode to install mysql

Linux uses binary mode to install mysql

This article shares the specific steps of installing MySQL in binary mode on Linux for your reference. The specific contents are as follows

1. Download the binary file

Download mysql-5.6.36-linux-glibc2.5-i686.tar.gz from the official website.

2. Unzip the file and move it to the /usr/local/mysql directory

tar -zxvf mysql-5.6.36-linux-glibc2.5-i686.tar.gz

3. Create user groups and users and configure

groupadd mysql
useradd mysql -g mysql
chown -R mysql /usr/local/mysql/
chgrp -R mysql /usr/local/mysql/

4. Installation and initialization

#Install mysql
/usr/local/mysql/scripts/mysql_install_db --user=root
#Configure mysql startup file cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf
#Add the mysqld service to the system cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld
#Soft link the mysql command to the system command ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql

5. Start service test

service mysqld start
mysql -u root

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:
  • Graphic tutorial for installing mysql-5.6.4 under Linux
  • How to install MySQL in Linux and use C language to operate the database How to connect to MySQL in C language
  • How to enable log management function after installing MySQL on Windows and Linux
  • How to install MySQL 5.6 from source code under SUSE Linux
  • Simple steps to compile and install MySQL 5.5 under Linux
  • The whole process and precautions of installing MySql 5.7.17 under the latest Linux system
  • Compile and install MySQL under Linux-Python tutorial
  • Install mysql-5.6.12-linux-glibc2.5-x86_64.tar.gz under Linux
  • Installing MySQL multiple instances under Linux as a data backup server to achieve multi-master to one-slave multi-instance backup
  • Tutorial on installing mysql in rpm mode under Linux

<<:  Use javascript to create dynamic QQ registration page

>>:  Detailed installation and use of SSH in Ubuntu environment

Recommend

Three ways to implement animation in CSS3

This is a test of the interviewee's basic kno...

How to view the creation time of files in Linux

1. Introduction Whether the creation time of a fi...

Detailed explanation of the use of Join in Mysql

In the previous chapters, we have learned how to ...

How to install golang under linux

Go is an open source programming language that ma...

Comparison of mydumper and mysqldump in mysql

If you only want to back up a few tables or a sin...

Analysis of statement execution order of sql and MySQL

I encountered a problem today: Can I use the as a...

How to delete special character file names or directories in Linux

Delete a file by its inode number First use ls -i...

Vue.js cloud storage realizes image upload function

Preface Tip: The following is the main content of...

Introduction to the use of common Dockerfile commands

Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...

Vue implements weather forecast function

This article shares the specific code of Vue to r...

Detailed use of Echarts in vue2 vue3

Table of contents 1. Installation 2. Use Echarts ...

Solution to the root password login problem in MySQL 5.7

After I found that the previous article solved th...

Eight ways to implement communication in Vue

Table of contents 1. Component Communication 1. P...

Example of Vue transition to achieve like animation effect

Table of contents Results at a Glance Heart Effec...