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
- Pending Intent
- notifications
- 안드로이드 알림
- notification manager
- 안드로이드 알림채널
- 알림 우선순위
- 알림 인텐트
- android notification 예제
- 펜딩인텐트
- 안드로이드 알림 예제
- setPriority(NotificationCompat.PRIORITY_HIGH)
- notification channel
- 버전별 관리
- NotificationCompat.Builder
- setContentIntent
- setDefaults(NotificationCompat.DEFAULT_ALL)
Archives
- Today
- Total
공부용 블로그
percona 설치 및 jmeter 세팅 / ubuntu 16.04 본문
1. percona 설치
https://www.percona.com/doc/percona-server/5.7/installation/apt_repo.html
wget https://repo.percona.com/apt/percona-release_0.1-6.$(lsb_release -sc)_all.deb
dpkg -i percona-release_0.1-6.$(lsb_release -sc)_all.deb
$ sudo apt-get update
$ sudo apt-get install percona-server-server-5.7
2. percona 서버 사용
$ sudo service mysql start
$ sudo service mysql status
* percona 데이터 파일 저장 위치
/var/lib/mysql/
*configuration 파일 위치
/etc/mysql/my.cnf
3. 데이터베이스 및 테이블 생성 (mysql과 같음)
mysql > create database test_db default character set utf8; // 디비 생성
mysql > create table vod_list (vod_no varchar(32) primary key, title text, publisher varchar(12), thumnail varchar(24), views int, date_ int, category smallint); // 테이블 생성
* 스토리지 엔진 확인
SELECT engine FROM information_schema.TABLES where table_name='테이블명' AND table_schema='디비명';
or
SHOW TABLE STATUS WHERE name='테이블명';
(percona 5.7의 스토리지 엔진 디폴트는 InnoDB)
'설계 > RDBMS' 카테고리의 다른 글
RDBMS 벤치마크 서버컴 환경세팅 (mysql 5.7) (0) | 2018.12.09 |
---|---|
percona 테스트 진행 중 오류 (0) | 2018.12.08 |
mysql 8.0 설치 / ubuntu 16.04 (0) | 2018.12.07 |
mysql 명령어 모음 (0) | 2018.12.02 |
postgresql 외부접속허용 & 명령어 모음 (0) | 2018.12.01 |