MariaDB Installation: Difference between revisions
Jump to navigation
Jump to search
(→Mac) |
(→Mac) |
||
Line 40: | Line 40: | ||
brew install mariadb | brew install mariadb | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Post-Install Configuration== | |||
Immediately after installation, start the database as described in [[]]. | |||
==To Start When Needed== | ==To Start When Needed== |
Revision as of 04:27, 29 December 2023
Internal
Linux
Prerequisites
- The host name should be resolvable with resolveip.
RHEL 7
yum install -y mariadb-server mariadb
⚠️ After installation, makes sure you go through the post install steps, described below.
Post-Install
Uninstallation
Uninstallation with state removal:
systemctl stop mariadb.service
systemctl disable mariadb.service
yum remove mariadb-server mariadb
# remove data
rm -r /var/lib/mysql
# remove logs
rm -r /var/log/mariadb
rm -r /var/run/mariadb
Mac
brew install mariadb
Post-Install Configuration
Immediately after installation, start the database as described in [[]].
To Start When Needed
To run on demand:
/opt/brew/opt/mariadb/bin/mysqld_safe --datadir\=/opt/brew/var/mysql
To Start at Boot
brew services start mariadb