Mysql 5.7.17 source code compilation and installation under Ubuntu 16.04

Mysql 5.7.17 source code compilation and installation under Ubuntu 16.04 System Environment ubuntu 16.04 64 bits Official documentation states: http://dev.mysql.com/doc/refman/5.7/en/source-installation.html I. System Installation Conditions 1.cmake MySQL uses cmake cross-platform tools to pre-compile source code to set the compila ...

Posted by nev25 on Sat, 13 Jul 2019 02:28:04 +0200

Summary of MYSQL Source Code Installation in MYSQL Learning Paper 001-LINUX Environment

Summary of MYSQL Source Code Installation in MYSQL Learning Paper 001-LINUX Environment In the past, MSSQL, ORACLE and SYBASE databases were mainly used, and recently MYSQL was used by the company. Start learning by referring to the official document REFMAN-5.6-EN.A4.PDF. This paper is a summary of the recent installation process. To insta ...

Posted by jeethau on Wed, 10 Jul 2019 23:52:05 +0200

mysql-5.6.21 source installation under CentOS 6.6

Uninstall the old version See if MySQL Server is installed on the system: Use the following command to check whether MySQL Server is installed rpm -qa | grep mysqlIf it exists, use some commands to uninstall rpm -e mysql //General deletion mode rpm -e --nodeps mysql // Strong deletion mode, if you use the above command to delete, ...

Posted by Zhadus on Mon, 01 Jul 2019 01:14:56 +0200

Mac environment, install OpenCV, VScode debugging C++ program

background Recently, OpenCV, a code related to image recognition, has been studied. To facilitate debugging, a debugging environment for debugging c++ programs on Mac has to be set up.I'm running away. Share it with you. Environmental Science Mac OS 10.14.5 xcode-select v2354 Visual Studio code 1.35.1 OpenCV 3.4.5 Clang 1001.0.46.4 CMake 3.14 ...

Posted by FluxNYC on Thu, 27 Jun 2019 18:18:20 +0200

Android: Building a JNI Project with CMake

The default tool for building JNI projects with Android Studio version 2.2 or later is CMake, which has been tried recently because of the need to compile C files and is really much more convenient than ndk-build.The following will be android-gpuimage Take this project as an example. 1. Download NDK and build tools Open SDK Manager: Select T ...

Posted by fme on Fri, 14 Jun 2019 20:11:32 +0200

Travel of ffmpeg Development (4): Analysis of MP3 Encoding Format and Compilation and Packaging of lame Library

Travel of ffmpeg Development (4): Analysis of MP3 Encoding Format and Compilation and Packaging of lame Library Reproduced please state the source: http://blog.csdn.net/andrexpert/article/77683776 I. Analysis of Mp3 Encoding Format MP3, full-name MPEG Audio Layer 3, is an efficient computer audio coding scheme. It converts audio files into s ...

Posted by lostboy on Wed, 29 May 2019 19:54:14 +0200

Some Lessons from cmake

Initial users of CMake or those who don't know much about it may often be stumbled by such issues as path inclusion, library search paths, link paths, RPath, which are easy tasks when performing gcc manually or writing makefile s. In fact, I had a lot of doubts, but after a long time of practice and reading manual, I finally got a relatively c ...

Posted by acey99 on Sun, 19 May 2019 09:11:41 +0200

Centos 7.2 Compile and Install Mysql 5.7.18 Configuration and Details

I. Main features of MySQL 5.7 (1) Native Support Systemd (2) Better performance: for multi-core CPU, solid-state hard disk, lock has better optimization (3) Better InnoDB storage engine (4) More robust replication: replication brings a solution that data is not lost at all. Traditional financial customers can also use mysql database. (5) A ...

Posted by mcubedma on Tue, 14 May 2019 23:09:50 +0200

opencv-3.4.1 + qt-5.6.3 + vs2015 + cmake-3.11.1 Install opencv [Illustration]

1. Prepare: 1.cmake-3.11.1-win64-x64 https://cmake.org/files/v3.11/  2.qt-opensource-windows-x86-msvc2015-5.6.3  3.vs2015  4.opencv-3.4.1-vc14_vc15.exe   https://github.com/opencv/opencv/releases/tag/3.4.1 2. Install software: 1.cmake installation (unzip to use) 2.qt installation, also install WDB http://www.codemac ...

Posted by romanali on Fri, 10 May 2019 17:19:22 +0200