Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- msw
- store router
- aws db 생성
- tiptap 에디터
- spring 동적 스케줄러
- vite.config.js
- vite
- fastapi 라우터
- python path
- spring dynamic scheduler
- tiptap vue3
- tiptap custom command
- vue3
- aws mariadb
- tiptap slash command
- mockserviceworker.js
- vite이미지캐싱
- vue2.7
- fastapi router
- tiptap
- vue composable
- mock service worker
- 프로필이미지캐싱
- branch 이름 변경
- vue3이미지캐싱
- threadpooltaskscheduler
- vue mixin
- springboot dynamic scheduler
- pinia
- 파이썬 경로추가
Archives
- Today
- Total
목록aws db 생성 (1)
gomstory

1. 설치 가능한 버전 확인하기sudo yum list | grep mariadb 2. 설치sudo yum install mariadb105-server 3. 자동 실행 설정sudo systemctl enable mariadb 4. db 실행 및 상태 확인sudo systemctl start mariadb sudo systemctl status mariadb 5. 비밀번호 설정mysql -u root -perror: 'Access denied for user 'root'@'localhost''비밀번호는 쿼리로 변경했다. USE mysqlALTER user 'root'@'localhost' identified by {password}; 6. db 외부 연결 허용 / 테스트GRANT ALL PRIVILEGE..
AWS
2024. 9. 5. 21:30