2 01 2022
CentOS 8 + MySQL Install
1.설치 – install mysql – [root@localhost /]# yum install mysql-server
2.서비스 시작
[root@localhost /]# systemctl start mysqld.service
[root@localhost /]# systemctl start mysqld
3.서버 자동시작
4. 서버 재구동시 mysql 자동 서비스 구동 설정
5.패스워드 정책설정
최초설정- $ mysql_secure_installation
정책변경 – [root@localhost my.cnf.d]# cat mysql-server.cnf
#Password Ploicy
validate_password.policy=LOW
7.ssh 포트변경
– 1)selinux 완전 사용안함 변경
vi /etc/selinux/config
SELINUX=disabled 변경 후 재부팅
– 2)firewall 사용
systemctl start firewalld
firewall-cmd –permanent –zone=public –add-port=3022/tcp
systemctl reload firewalld
– 3)sshd_config 포드변경
vi /etc/ssh/sshd_config
Port 3022 추가
Comments are currently closed.