Created
January 4, 2024 16:25
-
-
Save deepankarsharma/43e81c63e34e9478b295dab901f171ab to your computer and use it in GitHub Desktop.
build mariadb on ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt build-dep mariadb | |
git clone --depth 1 https://github.com/MariaDB/server | |
cd server | |
mkdir build | |
cd build | |
cmake .. | |
make -j 8 | |
cd .. | |
./build/scripts/mariadb-install-db --srcdir=. | |
./build/sql/mysqld --basedir . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment