Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MySQL compilation and installation and detailed explanation of compilation parameters

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "MySQL compilation and installation and detailed explanation of compilation parameters". In daily operation, I believe many people have doubts about MySQL compilation and installation and detailed explanation of compilation parameters. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubts of "MySQL compilation, installation and compilation parameters". Next, please follow the editor to study!

Add mysql groups and mysql users

[root@test mysql] # groupadd mysql

[root@test mysql] # useradd-g mysql mysql

Compilation and installation

Tar-zxvf mysql-5.1.35.tar.gz

. / configure /

-prefix=/usr/local/mysql /

-- localstatedir=/data/mysql/data / mysql data directory

-enable-assembler /

-with-mysqld-ldflags=-rdynamic /

-with-client-ldflags=-all-static /

-with-plugins=innobase,partition /

-with-extra-charsets=none /

-enable-thread-safe-client /

-- with-client-ldflags=-all-static / compiling the client statically

-- with-mysqld-ldflags=-all-static compiles the server statically

Make & & make install

-- enable-thread-safe-client / compile the client in a threaded manner

Mysql directory permission settings

Mkdir / usr/local/mysql/var

Mkdir / var/run/mysqld

Chmod + w / usr/local/mysql/

Chown-R mysql:mysql / usr/local/mysql/

Chown-R mysql:mysql / var/run/mysqld

Cp / usr/local/mysql/share/mysql/my-innodb-heavy-4G.cnf / etc/my.cnf

Initialize tables with mysql users

/ usr/local//bin/mysql_install_db-basedir=/usr/local/mysql-datadir=/data/mysql/data-user=mysql

-- datadir=/data/mysql/data defines the mysql data storage directory

Note: if you define the data directory to another directory, you have to modify the / etc/my.cnf file first, adding the following two lines

[mysqld]

# generic configuration options

Port = 3306

Socket = / tmp/mysql.sock

# wb config

Basedir = / usr/local/mysql meaning mysql program directory

Datadir = / data1/mysql/data defines the data directory

Initialize the table on the database, otherwise my startup will report an error.

Start the mysql service

/ usr/local/mysql/bin/mysqld_safe-- user=mysql-- datadir=/data/mysql/data (specify database directory)

/ usr/local/mysql/bin/mysqld_safe-- user=mysql 2 > & 1 > / dev/null &

At this point, the study of "detailed explanation of MySQL compilation, installation and compilation parameters" 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.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report