kit/other_scripts/mariadb-install.sh

11 lines
212 B
Bash
Raw Normal View History

2022-09-14 22:09:19 +00:00
#!/bin/bash
# Exit on error.
set -e
# Simple "script" to install mariadb-server
apt update && sudo apt install -y mariadb-server
# After the install is done, run the security script.
mysql_secure_installation