2
3
4
5
6
7
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.3/rhel7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
2
systemctl start mariadb
2
3
create user 'usas'@localhost identified by 'xxx';
grant all on sas.* to 'usas' identified by 'xxxx';






