본문 바로가기
Cloud | AI | BigData

[AWS-EC2 Hadoop|Hive|Spark] yum으로 MariaDB 10.5 설치

by 개폰지밥 2022. 12. 11.
반응형
☞ 관련 글
2022.11.16 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark]AWS 회원가입, 계정 삭제, 비밀번호 변경
2022.12.03 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark]인스턴스 생성, 시작과 종료
2022.12.04 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] 인스턴스 putty 접속 + root 접속 + puttygen .ppk 생성 +
2022.12.05 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] 계정생성 Java8설치 + selinux해제
2022.12.06 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] Haoop3.2 설치(Hadoop 계정)
2022.12.07 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] Hadoop 3.2 설정파일 설정
2022.12.08 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] 인스턴스 복사(AMI 생성) + 이미지/인스턴스 삭제
2022.12.09 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] Hadoop Name/DataNode 및 Client 서버 기본 설정+ ssh 키생성
2022.12.10 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] Hdfs 파일 포맷, Hdfs/Yarm 시작 종료
2022.12.10 - [Cloud | AI | BigData] - [AWS-Hadoop|Hive|Spark] Hadoop 구축 핵심 및 에러 정리
2022.12.11 - [Cloud | AI | BigData] - [AWS-EC2 Hadoop|Hive|Spark] yum으로 MariaDB 10.5 설치
2022.12.12 - [Cloud | AI | BigData] - [AWS-Hadoop|Hive|Spark] Hive 3 설치
2022.12.13 - [Cloud | AI | BigData] - [AWS-Hadoop|Hive|Spark] Spark 3 설치
2022.12.14 - [Cloud | AI | BigData] - [AWS-Hadoop|Hive|Spark] pip install로 jupyter 설치

 

| System Structure

 

10일째인 오늘은 MariaDB를 설치하겠습니다.

 

목차

1. MariaDB 설치 및 실행
   1.1 MariaDB 패스워드 변경
   1.2 MariaDB 접속 및 DB 테스트

 

내용

1. MariaDB 설치 및 실행

[hadoop@Namenode ~]$ sudo yum install mariadb-server -y

[hadoop@Namenode ~]$ sudo systemctl enable --now mariadb

[hadoop@Namenode ~]$ sudo systemctl status mariadb

 

 

1.1 MariaDB 패스워드 변경

[hadoop@Namenode ~]$ sudo mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
haven't set the root password yet, you should just press enter here.

Enter current password for root (enter for none): 현재 root 패스워드
OK, successfully used password, moving on...

Setting the root password or using the unix_socket ensures that nobody
can log into the MariaDB root user without the proper authorisation.

You already have your root account protected, so you can safely answer 'n'.

Switch to unix_socket authentication [Y/n] Y
Enabled successfully!
Reloading privilege tables..
 ... Success!


You already have your root account protected, so you can safely answer 'n'.

Change the root password? [Y/n] Y   -- root password 변경할것인지?
New password: 바꾸고 싶은 root패스워드 입력
Re-enter new password: 바꾸고 싶은 root패스워드 한번더 입력
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB 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] Y   -- anonymous users를 지울것인지
 ... 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] n -- 외부 root 로그인을 허가하지 않을것인가?
 ... skipping.

By default, MariaDB 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] Y -- test db를 제거하고 접근하지 않을것인가?
 - 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] Y --권한있는 table을 reload를 할것인가?
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

 

1.2 MariaDB 접속 및 DB 테스트

[hadoop@Namenode ~]$ mysql -uroot -pmysql


MariaDB [(none)]> create database hivedb;
MariaDB [(none)]> create user hiveuser@localhost identified by 'hivepw';
MariaDB [(none)]> grant all privileges on hivedb.* to hiveuser@localhost;
MariaDB [(none)]> grant all privileges on hivedb.* to hiveuser@'client' identified by 'hivepw';
MariaDB [(none)]> flush privileges;

 

1.3 MySQL Connector 설치

MySQL과 다른 프로그램을 연결해주기 위하여 MySQL Connetor도 설치합니다.

https://downloads.mysql.com/archives/c-j/

 

MySQL :: Download MySQL Connector/J (Archived Versions)

Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Connector/J, please visit MySQL Downloads. MySQL open source software is provided under the GPL License.

downloads.mysql.com

- Product Version: 8.0.21

- Operating System: Red Hat Enterprise Linux / Oracle Linux

- OS version : All 혹은 특정 버전을 선택해도 된다.

Redhat9를 사용하고 있긴한데, Redhat9 버전이 없어서 Redhat 8버전을 설치했는데 잘돌아가는것 같습니다.

반응형

댓글