mysql源码编译失败怎么怎么办?

发布于 2022-09-29 16:25:33 字数 46 浏览 7 评论 0

源码编译失败怎么怎么办? 我怎么删除已经安装的 mysql文件?或者是重新编译一次能覆盖吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

白色秋天 2022-10-06 16:25:33

最近的src.rpm都编译不灵了,所以只能装rpm包了,效果和性能感觉都还不错

迷雾森÷林ヴ 2022-10-06 16:25:33

# wget http://mysql.oss.eznetsols.org/D ... mysql-5.0.27.tar.gz
# tar xzvf mysql-5.0.27.tar.gz
# cd mysql-5.0.27
# CHOST="i686-pc-linux-gnu" CFLAGS="-O3 -msse2 -mmmx -mfpmath=sse -mcpu=pentium4 -march=pentium4 -pipe -fomit-frame-pointer" CXXFLAGS="-O3 -msse2 -mmmx -mfpmath=sse -funroll-loops -mcpu=pentium4 -march=pentium4 -pipe -fomit-frame-pointer"  ./configure --prefix=/usr/local/mysql  --localstatedir=/var/lib/mysql  --with-comment=Source  --with-server-suffix=-Community  --with-mysqld-user=mysql  --without-debug  --with-big-tables  --with-charset=latin1  --with-collation=latin1_swedish_ci  --with-extra-charsets=all  --with-pthread  --enable-static  --enable-thread-safe-client  --with-client-ldflags=-all-static  --with-mysqld-ldflags=-all-static  --enable-assembler  --without-innodb  --without-ndb-debug

配置成功会提示:

MySQL has a Web site at http://www.mysql.com/ which carries details on the
latest release, upcoming features, and other information to make your
work or play with MySQL more productive. There you can also find
information about mailing lists for MySQL discussion.

Remember to check the platform specific part of the reference manual for
hints about installing MySQL on your platform. Also have a look at the
files in the Docs directory.

Thank you for choosing MySQL!

# make
编译的时间可能会比较长,毕竟优化的比较厉害。

# make install

编译安装完成后执行后续操作:
   # useradd mysql   //添加 mysql 用户
   # cd /usr/local/mysql
   # bin/mysql_install_db --user=mysql
   # chown -R root:mysql .   //设置权限,注意后面有一个 "."
   # chown -R mysql /var/lib/mysql   //设置 mysql 目录权限
   # chgrp -R mysql .   //注意后面有一个 "."
   # cp share/mysql/my-huge.cnf /etc/my.cnf
   # cp share/mysql/mysql.server /etc/rc.d/init.d/mysqld   //开机自动启动 mysql。
   # chmod 755 /etc/rc.d/init.d/mysqld
   # chkconfig --add mysqld
   # /etc/rc.d/init.d/mysqld start   //启动 MySQL
   # bin/mysqladmin -u root password "123456789"
   # service mysqld stop   //关闭 MySQL

翻了热茶 2022-10-06 16:25:33

mark一个这个优化参数

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文