由于要做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
至此,,整个源码安装过程完成

데이터베이스 및 프로그래밍에서 MySQL의 위치는 매우 중요합니다. 다양한 응용 프로그램 시나리오에서 널리 사용되는 오픈 소스 관계형 데이터베이스 관리 시스템입니다. 1) MySQL은 웹, 모바일 및 엔터프라이즈 레벨 시스템을 지원하는 효율적인 데이터 저장, 조직 및 검색 기능을 제공합니다. 2) 클라이언트 서버 아키텍처를 사용하고 여러 스토리지 엔진 및 인덱스 최적화를 지원합니다. 3) 기본 사용에는 테이블 작성 및 데이터 삽입이 포함되며 고급 사용에는 다중 테이블 조인 및 복잡한 쿼리가 포함됩니다. 4) SQL 구문 오류 및 성능 문제와 같은 자주 묻는 질문은 설명 명령 및 느린 쿼리 로그를 통해 디버깅 할 수 있습니다. 5) 성능 최적화 방법에는 인덱스의 합리적인 사용, 최적화 된 쿼리 및 캐시 사용이 포함됩니다. 모범 사례에는 거래 사용 및 준비된 체계가 포함됩니다

MySQL은 소규모 및 대기업에 적합합니다. 1) 소기업은 고객 정보 저장과 같은 기본 데이터 관리에 MySQL을 사용할 수 있습니다. 2) 대기업은 MySQL을 사용하여 대규모 데이터 및 복잡한 비즈니스 로직을 처리하여 쿼리 성능 및 트랜잭션 처리를 최적화 할 수 있습니다.

InnoDB는 팬텀 읽기를 차세대 점화 메커니즘을 통해 효과적으로 방지합니다. 1) Next-Keylocking은 Row Lock과 Gap Lock을 결합하여 레코드와 간격을 잠그기 위해 새로운 레코드가 삽입되지 않도록합니다. 2) 실제 응용 분야에서 쿼리를 최적화하고 격리 수준을 조정함으로써 잠금 경쟁을 줄이고 동시성 성능을 향상시킬 수 있습니다.

MySQL은 프로그래밍 언어가 아니지만 쿼리 언어 SQL은 프로그래밍 언어의 특성을 가지고 있습니다. 1. SQL은 조건부 판단, 루프 및 가변 작업을 지원합니다. 2. 저장된 절차, 트리거 및 기능을 통해 사용자는 데이터베이스에서 복잡한 논리 작업을 수행 할 수 있습니다.

MySQL은 오픈 소스 관계형 데이터베이스 관리 시스템으로, 주로 데이터를 신속하고 안정적으로 저장하고 검색하는 데 사용됩니다. 작업 원칙에는 클라이언트 요청, 쿼리 해상도, 쿼리 실행 및 반환 결과가 포함됩니다. 사용의 예로는 테이블 작성, 데이터 삽입 및 쿼리 및 조인 작업과 같은 고급 기능이 포함됩니다. 일반적인 오류에는 SQL 구문, 데이터 유형 및 권한이 포함되며 최적화 제안에는 인덱스 사용, 최적화 된 쿼리 및 테이블 분할이 포함됩니다.

MySQL은 데이터 저장, 관리, 쿼리 및 보안에 적합한 오픈 소스 관계형 데이터베이스 관리 시스템입니다. 1. 다양한 운영 체제를 지원하며 웹 응용 프로그램 및 기타 필드에서 널리 사용됩니다. 2. 클라이언트-서버 아키텍처 및 다양한 스토리지 엔진을 통해 MySQL은 데이터를 효율적으로 처리합니다. 3. 기본 사용에는 데이터베이스 및 테이블 작성, 데이터 삽입, 쿼리 및 업데이트가 포함됩니다. 4. 고급 사용에는 복잡한 쿼리 및 저장 프로 시저가 포함됩니다. 5. 설명 진술을 통해 일반적인 오류를 디버깅 할 수 있습니다. 6. 성능 최적화에는 인덱스의 합리적인 사용 및 최적화 된 쿼리 문이 포함됩니다.

MySQL은 성능, 신뢰성, 사용 편의성 및 커뮤니티 지원을 위해 선택됩니다. 1.MYSQL은 효율적인 데이터 저장 및 검색 기능을 제공하여 여러 데이터 유형 및 고급 쿼리 작업을 지원합니다. 2. 고객-서버 아키텍처 및 다중 스토리지 엔진을 채택하여 트랜잭션 및 쿼리 최적화를 지원합니다. 3. 사용하기 쉽고 다양한 운영 체제 및 프로그래밍 언어를 지원합니다. 4. 강력한 지역 사회 지원을 받고 풍부한 자원과 솔루션을 제공합니다.

InnoDB의 잠금 장치에는 공유 잠금 장치, 독점 잠금, 의도 잠금 장치, 레코드 잠금, 갭 잠금 및 다음 키 잠금 장치가 포함됩니다. 1. 공유 잠금을 사용하면 다른 트랜잭션을 읽지 않고 트랜잭션이 데이터를 읽을 수 있습니다. 2. 독점 잠금은 다른 트랜잭션이 데이터를 읽고 수정하는 것을 방지합니다. 3. 의도 잠금은 잠금 효율을 최적화합니다. 4. 레코드 잠금 잠금 인덱스 레코드. 5. 갭 잠금 잠금 장치 색인 기록 간격. 6. 다음 키 잠금은 데이터 일관성을 보장하기 위해 레코드 잠금과 갭 잠금의 조합입니다.


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

맨티스BT
Mantis는 제품 결함 추적을 돕기 위해 설계된 배포하기 쉬운 웹 기반 결함 추적 도구입니다. PHP, MySQL 및 웹 서버가 필요합니다. 데모 및 호스팅 서비스를 확인해 보세요.

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

MinGW - Windows용 미니멀리스트 GNU
이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

PhpStorm 맥 버전
최신(2018.2.1) 전문 PHP 통합 개발 도구

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.
