Skip to content

Instantly share code, notes, and snippets.

@deepankarsharma
Created January 4, 2024 16:25
Show Gist options
  • Save deepankarsharma/43e81c63e34e9478b295dab901f171ab to your computer and use it in GitHub Desktop.
Save deepankarsharma/43e81c63e34e9478b295dab901f171ab to your computer and use it in GitHub Desktop.
build mariadb on ubuntu
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