centos 7.5+mysql 5.7RPM 설치 절차

1437 단어 데이터베이스
1. MYSQL 5.7 RPM 패키지를 다운로드합니다.그리고 tar-xvf[파일] 스트레스 풀기.
2. MariaDB 마운트 해제: CentOS의 기본 데이터베이스는 더 이상 MySQL이 아니라MariaDB이기 때문에 rpm 패키지를 직접 클릭하여 설치하면 오류 알림을 받을 수 있습니다.   rpm -qa|grep mariadb
rpm -e --nodeps[제거해야 할 패키지]
3. mysql 설치
rpm -ivh 파일 (여기는 순서대로:comment,lib,client, 서비스의 rpm 파일이어야 합니다.)
error: Failed dependencies: /usr/bin/perl is needed by MySQL-server-5.6.17-1.el6.x86_64
    libaio.so.1()(64bit) is needed by MySQL-server-5.6.17-1.el6.x86_64
    libaio.so.1(LIBAIO_0.1)(64bit) is needed by MySQL-server-5.6.17-1.el6.x86_64
    libaio.so.1(LIBAIO_0.4)(64bit) is needed by MySQL-server-5.6.17-1.el6.x86_64
위의 오류가 발생하면 의존도가 부족합니다.
yum install libaio

4./usr/bin/파일에 들어가서 실행
    mysqld --initialize --user=mysql
    mysqld --initialize-insecure --user=mysql
5. mysql을 시작합니다.
    service mysqld start
6. 기본 루트 암호 보기
   vi /var/log/mysqld.log
여섯 번째 줄 좌우 위치: [Note] A temporary password is generated forroot@localhost:xxxxx 
여기'xxx'가 비밀번호예요.
7.mysql 로그인
  mysql -u root -p
그리고 계좌명 비밀번호를 입력하세요.
8. 기본 비밀번호 수정
set password=password(새 암호)
9. 다른 기기의 로그인 권한을 부여합니다(선택 사항):
  grant all privileges  on *.* to root@'%' identified by "root";
비밀번호는 대소문자와 디지털 특수 기호, 새 버전의 비밀번호 메커니즘이 필요합니다.프로필을 수정할 수도 있습니다.

좋은 웹페이지 즐겨찾기