일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- rac
- 리스너구성
- node1
- scott unlock
- oui
- rac1
- #Oracle #Script #운영스크립트 #테이블스페이스 #Tablespace
- OEL5 설치
- #Mariadb #계정관리 #권한관리 #계정생성 #계정삭제 #권한부여 #권한삭제 #Maria #마리아디비
- 패치후 DB복구
- RHEL4_oracle10g_silent
- RHEL3
- 연습용계정
- oracle10g asm
- #Oracle #case문 #decode문 #Oracle함수
- Top #SQL
- raw device
- #linux #리눅스 #파일권한
- clusterware
- Silent Install
- ORA-01034: ORACLE not available
- Linux
- 굳ㅋ
- sql scott
- Silent Mode
- #Oracle #optimizer #CBO #RBO #rule #all_rows #first_rows
- 10.2.0.5
- #mariadb #mariadb삭제 #yum #mysql
- RHEL4_Oracle10g
- mariadb #마리아디비 #MariaDB설치 #mysql #yum저장소
- Today
- Total
목록Mysql_ MariaDB (3)
As it was in the beginning, is now, and ever shall be, world without end.

1. 설치된 Packages 확인 # yum list installed mariadb\* 2. Packages 삭제 # yum remove -y MaiaDB-client.x86_64 yum list installed mariadb\* 에 나온 Package를 전부 삭제하면 됨 3. 삭제 확인 # yum list installed mariadb\*
MariaDB 계정생성 및 권한 관리 ## 계정생성 create user 'username'@'localhost' identified by 'password'; #### 내부 접속용 create user 'username'@'%' identified by 'password'; #### 모든 IP 외부 접속용 create user 'username'@'123.123.123.123' identified by 'password' #### 특정 IP 외부 접속용 ## 계정삭제 drop user 'username'@'localhost' identified by 'password'; #### 내부 접속용 drop user 'username'@'%' identified by 'password'; #### 모든 IP ..

1. yum 저장소 설정 vi /etc/yum.repos.d/MariaDB.repo # MariaDB 10.4 CentOS repository list - created 2020-01-29 02:28 UTC # http://downloads.mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.4/centos7-ppc64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 CentOS7 기반 MariaDB 10.4 설치 설정이며 자세한 사항은 아래 링크에서 참고하여 수정 https://downloads.mariadb.org/mari..