여기서 원하는 OS와 버전을 선택한 뒤 저 페이지에서 하라는 대로 vi /etc/yum.repos.d/MariaDB.repo에 나온 정보를 입력하고
yum install MariaDB-server MariaDB-clent
한 뒤에
/etc/init.d/mysql start 하면 마리아DB가 기동된다.
그런 다음에root 패스워드를 변경하고
/usr/bin/mysqladmin -u root password '비밀번호'
mysql -uroot -p로 데이터베이스 접속한 뒤에
외부에서 root 로그인을 허용하기 위해
grant all privileges on *.* to 'root'@'%' identified by '비밀번호' with grant option;flush privileges 하면 된다.
출처: https://www.enteroa.com/2016/11/14/mariadb-yum%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EC%84%A4%EC%B9%98-centos-7/
yum install MariaDB-server MariaDB-clent
한 뒤에
/etc/init.d/mysql start 하면 마리아DB가 기동된다.
그런 다음에root 패스워드를 변경하고
/usr/bin/mysqladmin -u root password '비밀번호'
mysql -uroot -p로 데이터베이스 접속한 뒤에
외부에서 root 로그인을 허용하기 위해
grant all privileges on *.* to 'root'@'%' identified by '비밀번호' with grant option;flush privileges 하면 된다.
출처: https://www.enteroa.com/2016/11/14/mariadb-yum%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EC%84%A4%EC%B9%98-centos-7/
댓글
댓글 쓰기