sudo dnf install mariadb-server

systemctl enable mariadb

systemctl start mariadb

 

sudo mysql_secure_installation

 

create database xe character set utf8mb4 collate utf8mb4_general_ci;

create user 'board'@'localhost' identified by 'board';

grant all privileges on xe.* to 'board'@'localhost' identified by 'board';

flush privileges;

 

sudo dnf install openssl-devel bzip2-devel libffi-devel

tar xzf Python-3.9.0.tgz

sudo ./configure --enable-optimizations

sudo make altinstall

sudo dnf install python-devel mysql-devel

Posted by jtfafa
,