centos 설치 my sql 5.7 상세 튜 토리 얼

4491 단어 centOSmysql5.7
본 고 는 centos 에 my sql 5.7 을 설치 하 는 상세 한 절 차 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
첫 번 째 단계:
첫 번 째 검 측 시스템 이 mysql 을 자체 적 으로 설치 할 지 여부 입 니 다.두 번 째 절 을 실행 하면 시스템 자체 의 mysql 과 그 의존 도 를 삭제 합 니 다.

yum list installed | grep mysql
yum -y remove mysql-libs.x86_64
두 번 째 단계:
CentOS 에 rpm 소스 를 추가 하고 새로운 소스 를 선택 하 십시오.다음 코드 는 한 마디 씩 실 행 됩 니 다.

wget dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
yum localinstall mysql-community-release-el6-5.noarch.rpm
yum repolist all | grep mysql
yum-config-manager --disable mysql55-community
yum-config-manager --disable mysql56-community
yum-config-manager --enable mysql57-community-dmr
yum repolist enabled | grep mysql
세 번 째 단계:
mysql 서버 설치

yum install mysql-community-server
네 번 째 단계:

service mysqld start
다섯 번 째 단계:
mysql 자동 시작 여 부 를 확인 하고 자동 시작 설정

chkconfig --list | grep mysqld
chkconfig mysqld on
여섯 번 째 단계:
이 단 계 는 매우 중요 하 다!!!
mysql 의 어느 버 전부터 mysql 의 루트 기본 암 호 는 비어 있 지 않 습 니 다.설치 과정 에서 기본 암 호 는 설치 로그 에 저 장 됩 니 다.설치 로 그 를 통 해 기본 비밀 번 호 를 찾 아야 합 니 다.기본 비밀번호 로 my sql 에 로그 인 한 후 비밀 번 호 를 강제로 수정 할 수 있 습 니 다.변 경 된 비밀 번 호 는 복잡 해 야 수정 할 수 있 습 니 다.보통 대소 문자 와 숫자 가 8 글자 가 넘 으 면 됩 니 다.
우선 설치 로 그 를 찾 습 니 다.

find / -name mysqld.log
그리고 이 로그 파일 경 로 는/var/log/mysqld.log 에 있 습 니 다.그리고 아래 명령 으로 열 고'i'버튼 을 누 르 고 뒤 집 습 니 다.

vim /var/log/mysqld.log

위의 빨간색 부분 은 루트 비밀번호 가 있 는 곳 입 니 다.
일곱 번 째 단계:
mysql 보안 설정

mysql_secure_installation
위의 명령 을 입력 하여 아래 절 차 를 진행 하 다.

SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):<C    ,           ,               
OK, successfully used password, moving on…
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] <C     root    ,  y        
New password: <C   root     
Re-enter new password: <C            
Password updated successfully!
Reloading privilege tables..
… Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] <C         ,        ,      
… Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] <C    root    ,         Y/n   ,    
… Success!
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] <C     test   ,    
- Dropping test database…
… Success!
- Removing privileges on test database…
… Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] <C          ,    
… Success!
Cleaning up…
All done! If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
[root@server1 ~]#
여덟 번 째 단계:
선택 할 수 있 는 절차 입 니 다.원래 Linux 의 MySQL 은 기본적으로 표 이름 대소 문 자 를 구분 합 니 다.다음 설정 을 통 해 MySQL 은 표 이름 대소 문 자 를 구분 하지 않 습 니 다.
1.루트 로 로그 인하 여/etc/my.cnf 를 수정 합 니 다.
2.[my sqld]노드 에 한 줄 추가:lowercase_table_names=1
3.MySQL 을 다시 시작 하면 됩 니 다.service mysqld restart
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기