0

i'm a linux newbie and i wanna install mariadb 10.2 which doesn't exist in the the repo. so i wanna install it from the source code mariadb-10.2.12.tar.gz here, so how can i install it

2 Answers2

0
sudo pacman -S mariadb

and I installed mariadb successfuly

Nick
  • 138,499
  • 22
  • 57
  • 95
0

This worked for me in arch:-

- sudo pacman -S mariadb
- sudo  mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
- sudo systemctl start mariadb 
- sudo mysql_secure_installation 
- mysql -u root -p 
HatLess
  • 10,622
  • 5
  • 14
  • 32
chandan kumar
  • 246
  • 2
  • 2