首页 > 数据库技术 > 详细

Centos Mysql 编译安装调试

时间:2015-04-06 21:56:03      阅读:297      评论:0      收藏:0      [点我收藏+]
[root@localhost opt]# useradd -s /sbin/nologin mysql
[root@localhost opt]# yum install libtermcap-devel #mysql 所需包
[root@localhost opt]# tar zxf mysql-5.1.52.tar.gz 
[root@localhost opt]# cd mysql-5.1.52 
[root@localhost mysql-5.1.52]# ./configure > --prefix=/usr/local/mysql --enable-assembler > --with-mysqld-ldflags=-all-static > --with-client-ldflags=-all-static > --with-unix-socket-path=/usr/local/mysql/tmp/mysql.sock > --with-charset=utf8 > --with-collation=utf8_general_ci > --with-plugins=innobase > --with-extra-charsets=all
[root@localhost mysql-5.1.52]# make && make install
[root@localhost mysql-5.1.52]# cp support-files/my-medium.cnf /etc/my.cnf #复制配置文件到etc目录
[root@localhost mysql-5.1.52]# cd /usr/local/mysql
[root@localhost mysql-5.1.52]# bin/mysql_install_db --user=mysql #安装mysql db
[root@localhost mysql-5.1.52]# chown –R mysql /usr/local/mysql
[root@localhost mysql-5.1.52]# bin/mysqld_safe --user=mysql & #启动mysql
[root@localhost mysql-5.1.52]# cp share/mysql/mysql.server /etc/init.d/mysqld
[root@localhost mysql-5.1.52]# chmod 755 /etc/init.d/mysqld
[root@localhost mysql-5.1.52]# chkconfig -–add mysqld
[root@localhost mysql-5.1.52]# chkconfig mysqld on #开机启动
[root@localhost mysql-5.1.52]# /etc/init.d/mysqld restart

2,my.cnf 配置,添加如下配置

max_allowed_packet = 16M
skip-name-resolve        #跳过dns查询
max_connections=1000
#log-bin=mysql-bin       #如果不使用主从配置,可以注释
#binlog_format=mixed
default-storage-engine=INNODB  #设置默认引擎
thread_concurrency = 16  #CPU逻辑线程数的2-4倍,我们搭载的CPU为8核心 × 2

3, 设置密码

[root@localhost mysql]# bin/mysql_secure_installation 
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we‘ll need the current
password for the root user.  If you‘ve just installed MySQL, and
you haven‘t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):   #密码为空
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] y   #设置密码
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from ‘localhost‘.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MySQL comes with a database named ‘test‘ that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...



All done!  If you‘ve completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!

Centos Mysql 编译安装调试

原文:http://my.oschina.net/harlanblog/blog/396608

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!