博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos Mysql 编译安装调试
阅读量:7186 次
发布时间:2019-06-29

本文共 3458 字,大约阅读时间需要 11 分钟。

hot3.png

[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 = 16Mskip-name-resolve        #跳过dns查询max_connections=1000#log-bin=mysql-bin       #如果不使用主从配置,可以注释#binlog_format=mixeddefault-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 currentpassword for the root user.  If you've just installed MySQL, andyou 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 MySQLroot 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 anyoneto log into MySQL without having to have a user account created forthem.  This is intended only for testing, and to make the installationgo a bit smoother.  You should remove them before moving into aproduction environment.Remove anonymous users? [Y/n] y ... Success!Normally, root should only be allowed to connect from 'localhost'.  Thisensures 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 canaccess.  This is also intended only for testing, and should be removedbefore 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 farwill 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 MySQLinstallation should now be secure.Thanks for using MySQL!

转载于:https://my.oschina.net/harlanblog/blog/396608

你可能感兴趣的文章
c#List泛型数据扩展,把List<>型数据格式化成List<SelectListItem>,用来作dropdownlist的数据...
查看>>
ubuntu14.04下CPU的caffe配置,不成功的朋友请与我(lee)联系,后面附带邮箱
查看>>
Nginx的一些介绍
查看>>
使用Android注解来改善代码
查看>>
从头认识Spring-2.4 基于java的标准注解装配-@Inject-限定器@Named
查看>>
数据库扩展性设计:使用二进制解决一条记录关联多个状态的问题
查看>>
BZOJ 2021 Usaco2010 Jan Cheese Towers 动态规划
查看>>
Activiti源代码分析
查看>>
cookie,session,localStorage,SessionStorage的简单区别
查看>>
排它锁 共享锁的区别
查看>>
深入理解JMM(Java内存模型) --(四)volatile
查看>>
Cocos2d-x 粒子编辑器 Particle Studio 争做 Windows Particle Designer 源代码
查看>>
纯css打造美丽的html表格
查看>>
extern C的作用具体解释
查看>>
SharedPreferences概述
查看>>
如何通过Dreamweaver批量对整个站点或目录进行代码搜索或部分全部替换
查看>>
InteliJ Idea通过maven创建webapp
查看>>
【源代码】Timer和TimerTask源代码剖析
查看>>
kbmmw 中虚拟文件操作入门
查看>>
使用域账号统一管理cisco网络设备
查看>>