Mysql 의 기초 사용 MariaDB 설치 방법 상세 설명
본론 으로 돌아 가면 우 리 는 MariaDB 에 대해 구체 적 으로 이야기 하 겠 습 니 다.사실은 MariaDb 의 조작 은 Mysql 의 조작 과 대체적으로 같 습 니 다.Mysql 을 바탕 으로 성능 을 향상 시 켰 을 뿐 입 니 다.현재 MariaDB 의 업데이트 속 도 는 Oracle 팀 의 속 도 를 훨씬 뛰 어 넘 었 습 니 다.Mysql 창시자 가 이 끄 는 팀 이기 때문에 안심 할 수 없습니다.
MariaDb 설치
링크 ux 아래 통과
yum install mariadb mariadb-server # , Y
mariaDBde 서비스의 기본 명령
[root@127 ~]# systemctl start mariadb.service # MariaDB
[root@127 ~]# systemctl stop mariadb.service # MariaDB
[root@127 ~]# systemctl restart mariadb.service # MariaDB
[root@127 ~]# systemctl enable mariadb.service # [root@127 ~]# systemctl disenable mariadb.service #
루트 비밀번호 초기 화
[root@127 ~]# mysql_secure_installation # root
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
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): root , ( )
Enter current password for root (enter for none): root , ( ↓)
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
You already have a root password set, so you can safely answer 'n'.
Change the root password? [Y/n] y
New password:
Re-enter new password:
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
... 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] y
... Success!
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
- Dropping test database...
ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist
... Failed! Not critical, keep moving...
- 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
... 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!#
데이터베이스 로그 인
[root@127 ~]# mysql -uroot -proot # mysql -u ( root) & & -p ( )
MariaDBWelcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 23
Server version: 5.5.50-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
# /h
MariaDB [(none)]> sql
지금까지 MariaDB 의 설치 입 니 다.위 에서 말 한 것 은 편집장 님 께 서 소개 해 주신 Mysql 의 기초 사용 방법 인 MariaDB 설치 방법 에 대한 상세 한 설명 입 니 다.여러분 께 도움 이 되 셨 으 면 좋 겠 습 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 님 께 서 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MySQL에서 JSON 인덱싱 - aarondfrancis사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 말하지만 완전히 정확하지는 않습니다. MySQL로 JSON 열을 인덱싱하는 것은 완전히 가능합니다! 사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.