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
'리눅스' 카테고리의 다른 글
[리눅스 공통] 그놈 날짜 형식 바꾸기 (0) | 2020.12.12 |
---|---|
[리눅스 공통] 프롬프트 변경 (0) | 2020.11.15 |
[fedora]페도라서버에 오라클XE설치후 할일 (0) | 2020.05.02 |
[CentOS8] CentOS8에 OracleXE18C 설치 (0) | 2020.04.30 |
Eclipse IPV4 (0) | 2020.04.15 |