搜索
首页数据库mysql教程使用源码安装MySQL 5.5.9版本

由于要做goldengate异构平台的数据库同步测试,需要测试MYSQL与Oracle之间的数据同步,因此本篇就介绍源码安装MYSQL的过程 安装流

由于要做goldengate异构平台的数据库同步测试,需要测试MYSQL与Oracle之间的数据同步,因此本篇就介绍源码安装MYSQL的过程

安装流程如下:
1、解压安装包
tar -zcvf 包名.tar.gz
2、编译及安装
确保cmake已经下载()并安装(下载解压,然后修改一下环境变量即可,不需要安装)
shell> tar zxvf mysql-VERSION.tar.gz
shell> cd mysql-VERSION
shell> cmake .
shell> make
shell> su - root
shell> cd mysql-VERSION
shell> make install DESTDIR="/usr/local/mysql"

这样安装后,目录居然在是/usr/local/mysql/usr/local/mysql下,晕,移走:
[root@ora10g mysql]# mv /usr/local/mysql/usr/local/mysql/* /usr/local/mysql/
[root@ora10g mysql]# ls -l
total 0
[root@ora10g mysql]# pwd
/usr/local/mysql/usr/local/mysql
[root@ora10g mysql]# cd /usr/local/mysql/
[root@ora10g mysql]# ll
total 192
drwxr-xr-x   2 root root   4096 Mar  1 23:40 bin
-rw-r--r--   1 root root  17987 Jan 20 06:37 COPYING
drwxr-xr-x   4 root root   4096 Mar  1 23:39 data
drwxr-xr-x   2 root root   4096 Mar  1 23:39 docs
drwxr-xr-x   3 root root   4096 Mar  1 23:39 include
-rw-r--r--   1 root root   7390 Jan 20 06:37 INSTALL-BINARY
drwxr-xr-x   3 root root   4096 Mar  1 23:39 lib
drwxr-xr-x   4 root root   4096 Mar  1 23:40 man
drwxr-xr-x  10 root root   4096 Mar  1 23:40 mysql-test
-rw-r--r--   1 root root 113534 Jan 20 06:37 README
drwxr-xr-x   2 root root   4096 Mar  1 23:40 scripts
drwxr-xr-x  27 root root   4096 Mar  1 23:40 share
drwxr-xr-x   4 root root   4096 Mar  1 23:40 sql-bench
drwxr-xr-x   2 root root   4096 Mar  1 23:40 support-files
drwxr-xr-x   3 root root   4096 Mar  1 23:39 usr
[root@ora10g mysql]# rm -rf usr
[root@ora10g mysql]# ls -l
total 188
drwxr-xr-x   2 root root   4096 Mar  1 23:40 bin
-rw-r--r--   1 root root  17987 Jan 20 06:37 COPYING
drwxr-xr-x   4 root root   4096 Mar  1 23:39 data
drwxr-xr-x   2 root root   4096 Mar  1 23:39 docs
drwxr-xr-x   3 root root   4096 Mar  1 23:39 include
-rw-r--r--   1 root root   7390 Jan 20 06:37 INSTALL-BINARY
drwxr-xr-x   3 root root   4096 Mar  1 23:39 lib
drwxr-xr-x   4 root root   4096 Mar  1 23:40 man
drwxr-xr-x  10 root root   4096 Mar  1 23:40 mysql-test
-rw-r--r--   1 root root 113534 Jan 20 06:37 README
drwxr-xr-x   2 root root   4096 Mar  1 23:40 scripts
drwxr-xr-x  27 root root   4096 Mar  1 23:40 share
drwxr-xr-x   4 root root   4096 Mar  1 23:40 sql-bench
drwxr-xr-x   2 root root   4096 Mar  1 23:40 support-files

[root@ora10g mysql]# pwd
/usr/local/mysql
[root@ora10g mysql]# ls -l
total 188
drwxr-xr-x   2 mysql mysql   4096 Mar  1 23:40 bin
-rw-r--r--   1 mysql mysql  17987 Jan 20 06:37 COPYING
drwxr-xr-x   4 mysql mysql   4096 Mar  1 23:39 data
drwxr-xr-x   2 mysql mysql   4096 Mar  1 23:39 docs
drwxr-xr-x   3 mysql mysql   4096 Mar  1 23:39 include
-rw-r--r--   1 mysql mysql   7390 Jan 20 06:37 INSTALL-BINARY
drwxr-xr-x   3 mysql mysql   4096 Mar  1 23:39 lib
drwxr-xr-x   4 mysql mysql   4096 Mar  1 23:40 man
drwxr-xr-x  10 mysql mysql   4096 Mar  1 23:40 mysql-test
-rw-r--r--   1 mysql mysql 113534 Jan 20 06:37 README
drwxr-xr-x   2 mysql mysql   4096 Mar  1 23:40 scripts
drwxr-xr-x  27 mysql mysql   4096 Mar  1 23:40 share
drwxr-xr-x   4 mysql mysql   4096 Mar  1 23:40 sql-bench
drwxr-xr-x   2 mysql mysql   4096 Mar  1 23:40 support-files
[root@ora10g mysql]# scripts/mysql_install_db --user=mysql
Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

./bin/mysqladmin -u root password 'new-password'
./bin/mysqladmin -u root -h ora10g password 'new-password'

Alternatively you can run:
./bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd . ; ./bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd ./mysql-test ; perl mysql-test-run.pl

Please report any problems with the ./bin/mysqlbug script!
[root@ora10g mysql]# chown -R root .
[root@ora10g mysql]# ll
total 188
drwxr-xr-x   2 root mysql   4096 Mar  1 23:40 bin
-rw-r--r--   1 root mysql  17987 Jan 20 06:37 COPYING
drwxr-xr-x   5 root mysql   4096 Mar  1 23:51 data
drwxr-xr-x   2 root mysql   4096 Mar  1 23:39 docs
drwxr-xr-x   3 root mysql   4096 Mar  1 23:39 include
-rw-r--r--   1 root mysql   7390 Jan 20 06:37 INSTALL-BINARY
drwxr-xr-x   3 root mysql   4096 Mar  1 23:39 lib
drwxr-xr-x   4 root mysql   4096 Mar  1 23:40 man
drwxr-xr-x  10 root mysql   4096 Mar  1 23:40 mysql-test
-rw-r--r--   1 root mysql 113534 Jan 20 06:37 README
drwxr-xr-x   2 root mysql   4096 Mar  1 23:40 scripts
drwxr-xr-x  27 root mysql   4096 Mar  1 23:40 share
drwxr-xr-x   4 root mysql   4096 Mar  1 23:40 sql-bench
drwxr-xr-x   2 root mysql   4096 Mar  1 23:40 support-files
[root@ora10g mysql]# chown -R mysql data
[root@ora10g mysql]# ls -l
total 188
drwxr-xr-x   2 root  mysql   4096 Mar  1 23:40 bin
-rw-r--r--   1 root  mysql  17987 Jan 20 06:37 COPYING
drwxr-xr-x   5 mysql mysql   4096 Mar  1 23:51 data
drwxr-xr-x   2 root  mysql   4096 Mar  1 23:39 docs
drwxr-xr-x   3 root  mysql   4096 Mar  1 23:39 include
-rw-r--r--   1 root  mysql   7390 Jan 20 06:37 INSTALL-BINARY
drwxr-xr-x   3 root  mysql   4096 Mar  1 23:39 lib
drwxr-xr-x   4 root  mysql   4096 Mar  1 23:40 man
drwxr-xr-x  10 root  mysql   4096 Mar  1 23:40 mysql-test
-rw-r--r--   1 root  mysql 113534 Jan 20 06:37 README
drwxr-xr-x   2 root  mysql   4096 Mar  1 23:40 scripts
drwxr-xr-x  27 root  mysql   4096 Mar  1 23:40 share
drwxr-xr-x   4 root  mysql   4096 Mar  1 23:40 sql-bench
drwxr-xr-x   2 root  mysql   4096 Mar  1 23:40 support-files

 

[root@ora10g mysql]# bin/mysqld_safe --user=mysql &
[1] 25271
[root@ora10g mysql]# tail -100f /usr/local/mysql/data/ora10g.err
110301 23:56:00 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
110301 23:56:01 InnoDB: The InnoDB memory heap is disabled
110301 23:56:01 InnoDB: Mutexes and rw_locks use InnoDB's own implementation
110301 23:56:01 InnoDB: Compressed tables use zlib 1.2.1.2
110301 23:56:01 InnoDB: Using Linux native AIO
110301 23:56:01 InnoDB: Initializing buffer pool, size = 128.0M
110301 23:56:01 InnoDB: Completed initialization of buffer pool
InnoDB: The first specified data file ./ibdata1 did not exist:
InnoDB: a new database to be created!
110301 23:56:01  InnoDB: Setting file ./ibdata1 size to 10 MB
InnoDB: Database physically writes the file full: wait...
110301 23:56:02  InnoDB: Log file ./ib_logfile0 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile0 size to 5 MB
InnoDB: Database physically writes the file full: wait...
110301 23:56:03  InnoDB: Log file ./ib_logfile1 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile1 size to 5 MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Doublewrite buffer not found: creating new
InnoDB: Doublewrite buffer created
InnoDB: 127 rollback segment(s) active.
InnoDB: Creating foreign key constraint system tables
InnoDB: Foreign key constraint system tables created
110301 23:56:05  InnoDB: Waiting for the background threads to start
110301 23:56:06 InnoDB: 1.1.5 started; log sequence number 0
110301 23:56:06 [ERROR] Can't start server: Bind on TCP/IP port: Address already in use
110301 23:56:06 [ERROR] Do you already have another mysqld server running on port: 3306 ?
110301 23:56:06 [ERROR] Aborting

110301 23:56:06  InnoDB: Starting shutdown...
110301 23:56:07  InnoDB: Shutdown completed; log sequence number 1595675
110301 23:56:07 [Note] /usr/local/mysql/bin/mysqld: Shutdown complete

110301 23:56:07 mysqld_safe mysqld from pid file /usr/local/mysql/data/ora10g.pid ended
110302 00:01:08 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
110302  0:01:09 InnoDB: The InnoDB memory heap is disabled
110302  0:01:09 InnoDB: Mutexes and rw_locks use InnoDB's own implementation
110302  0:01:09 InnoDB: Compressed tables use zlib 1.2.1.2
110302  0:01:09 InnoDB: Using Linux native AIO
110302  0:01:10 InnoDB: Initializing buffer pool, size = 128.0M
110302  0:01:10 InnoDB: Completed initialization of buffer pool
110302  0:01:10 InnoDB: highest supported file format is Barracuda.
110302  0:01:11  InnoDB: Waiting for the background threads to start
110302  0:01:12 InnoDB: 1.1.5 started; log sequence number 1595675
110302  0:01:13 [Note] Event Scheduler: Loaded 0 events
110302  0:01:13 [Note] /usr/local/mysql/bin/mysqld: ready for connections.
Version: '5.5.9-log'  socket: '/tmp/mysql.sock'  port: 3306  Source distribution

[root@ora10g mysql]#

cp support-files/mysql.server /etc/init.d/mysql.server

[root@ora10g mysql]# bin/mysqladmin -u root shutdown
110302 00:09:00 mysqld_safe mysqld from pid file /usr/local/mysql/data/ora10g.pid ended
[1]+  Done                    bin/mysqld_safe --user=mysql
[root@ora10g mysql]#
[root@ora10g mysql]#
[root@ora10g mysql]# ps -ef | grep -i mysql
root     25783 11274  0 00:09 pts/6    00:00:00 grep -i mysql

至此,,整个源码安装过程完成

linux

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
减少在Docker中使用MySQL内存的使用减少在Docker中使用MySQL内存的使用Mar 04, 2025 pm 03:52 PM

本文探讨了Docker中的优化MySQL内存使用量。 它讨论了监视技术(Docker统计,性能架构,外部工具)和配置策略。 其中包括Docker内存限制,交换和cgroups

mysql无法打开共享库怎么解决mysql无法打开共享库怎么解决Mar 04, 2025 pm 04:01 PM

本文介绍了MySQL的“无法打开共享库”错误。 该问题源于MySQL无法找到必要的共享库(.SO/.DLL文件)。解决方案涉及通过系统软件包M验证库安装

如何使用Alter Table语句在MySQL中更改表?如何使用Alter Table语句在MySQL中更改表?Mar 19, 2025 pm 03:51 PM

本文讨论了使用MySQL的Alter Table语句修改表,包括添加/删除列,重命名表/列以及更改列数据类型。

在 Linux 中运行 MySQl(有/没有带有 phpmyadmin 的 podman 容器)在 Linux 中运行 MySQl(有/没有带有 phpmyadmin 的 podman 容器)Mar 04, 2025 pm 03:54 PM

本文比较使用/不使用PhpMyAdmin的Podman容器直接在Linux上安装MySQL。 它详细介绍了每种方法的安装步骤,强调了Podman在孤立,可移植性和可重复性方面的优势,还

什么是 SQLite?全面概述什么是 SQLite?全面概述Mar 04, 2025 pm 03:55 PM

本文提供了SQLite的全面概述,SQLite是一个独立的,无服务器的关系数据库。 它详细介绍了SQLite的优势(简单,可移植性,易用性)和缺点(并发限制,可伸缩性挑战)。 c

在MacOS上运行多个MySQL版本:逐步指南在MacOS上运行多个MySQL版本:逐步指南Mar 04, 2025 pm 03:49 PM

本指南展示了使用自制在MacOS上安装和管理多个MySQL版本。 它强调使用自制装置隔离安装,以防止冲突。 本文详细详细介绍了安装,起始/停止服务和最佳PRA

如何为MySQL连接配置SSL/TLS加密?如何为MySQL连接配置SSL/TLS加密?Mar 18, 2025 pm 12:01 PM

文章讨论了为MySQL配置SSL/TLS加密,包括证书生成和验证。主要问题是使用自签名证书的安全含义。[角色计数:159]

哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么?哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么?Mar 21, 2025 pm 06:28 PM

文章讨论了流行的MySQL GUI工具,例如MySQL Workbench和PhpMyAdmin,比较了它们对初学者和高级用户的功能和适合性。[159个字符]

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前By尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SecLists

SecLists

SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

安全考试浏览器

安全考试浏览器

Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能

mPDF

mPDF

mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),