이 글은 주로 Centos7 mysql에서 MariaDB를 다시 시작하는 것과 관련된 정보를 소개합니다. 글의 소개는 매우 자세하며 필요한 모든 친구가 함께 읽을 수 있습니다. 보세요.
머리말
MariaDB 데이터베이스 관리 시스템은 MySQL의 한 분야로, 주로 오픈 소스 커뮤니티에서 유지 관리하고 GPL 라이센스를 받았습니다. 이 브랜치를 개발한 이유 중 하나는 오라클이 MySQL을 인수한 후 MySQL을 소스로 폐쇄할 잠재적인 위험이 있었기 때문에 커뮤니티는 이러한 위험을 피하기 위해 브랜치 접근 방식을 채택했습니다. [3]
MariaDB는 API 및 명령줄을 포함하여 MySQL과 완벽하게 호환되어 MySQL을 쉽게 대체하는 것을 목표로 합니다. 스토리지 엔진 측면에서 XtraDB(Aria라는 이름)는 버전 10.0.9부터 MySQL의 InnoDB를 대체하는 데 사용되었습니다
# yum install mysql -y # mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111) 试着去启动mysql服务,仍然不行 # systemctl start mysql Failed to issue method call: Unit mysql.service failed to load: No such file or directory. # systemctl start mysql.service Failed to issue method call: Unit mysql.service failed to load: No such file or directory # systemctl enable mysql.service Failed to issue method call: Access denied
올바른 단계는 다음과 같습니다
# yum install mariadb-server -y systemctl stop mariadb.service # systemctl start mariadb.service # systemctl enable mariadb.service # mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 10 Server version: 5.5.44-MariaDB MariaDB Server Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]>
완료!
mysql 루트 비밀번호 설정 방법
# mysql_secure_installation
요약
위 내용은 Centos7에서 MariaDB를 다시 시작하는 mysql에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!