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

How to install mysql5.5 under linux64bit

2025-01-17 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.5 under linux64bit", in daily operation, I believe many people have doubts on how to install mysql5.5 under linux64bit, Xiaobian consulted all kinds of information, sorted out simple and easy to use operation methods, hope to answer "how to install mysql5.5 under linux64bit" doubts help! Next, please follow the small series to learn together!

Environment: centos5.3(x86_64)+mysql5.5+tomcat6.0+jdk1.5(64bit)

Download mysql-5.5.0-m2-linux-x86_64-glibc23.tar.gz, find INSTALL-BINARY file in directory, open installation as follows:

shell> groupadd mysql

shell> useradd -g mysql mysql

shell> cd /usr/local

shell> gunzip

< /path/to/mysql-VERSION-OS.tar.gz | tar xvf - shell>

ln -s full-path-to-mysql-VERSION-OS mysql

shell> cd mysql

shell> chown -R mysql .

shell> chgrp -R mysql .

shell> scripts/mysql_install_db --user=mysql

shell> chown -R root . (This step does not need to be operated)

shell> chown -R mysql data

shell> bin/mysqld_safe --user=mysql &

Modify the my-huge.cnf file in the support-files folder to set mysql database operations to be case-insensitive:

[mysqld]

lower_case_table_names=1

(0: Distinguish;1: Not Distinguish)

Copy my-huge.cnf file to/etc/my.cnf

Next time start mysql database via:/bin/mysql_safe Start.

At this point, the study of "how to install mysql5.5 under linux64bit" is over, hoping to solve everyone's doubts. Theory and practice can better match to help everyone learn, go and try it! If you want to continue learning more relevant knowledge, please continue to pay attention to the website, Xiaobian will continue to strive to bring more practical articles for everyone!

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