일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- android notification 예제
- setPriority(NotificationCompat.PRIORITY_HIGH)
- 안드로이드 알림채널
- 안드로이드 알림 예제
- 알림 우선순위
- notification channel
- NotificationCompat.Builder
- setDefaults(NotificationCompat.DEFAULT_ALL)
- Pending Intent
- notifications
- notification manager
- 버전별 관리
- 알림 인텐트
- 펜딩인텐트
- 안드로이드 알림
- setContentIntent
- Today
- Total
목록설계 (82)
공부용 블로그
1. 컴퓨터 포맷/ ubuntu 16.04 2. mysql 5.7 설치 # apt-get update # apt-get install mysql-server 3. mysql 외부접속 허용 - my.cnf 파일에서 bind-address 127.0.0.1 을 주석처리하고 bind-address 0.0.0.0 으로 바꿔줌 - 터미널에서 mysql 사용 # mysql -u root -p # 패스워드 입력 - 데이터베이스 생성mysql > create database test_db default character set utf8; - 테이블 생성mysql > create table vod_list (vod_no varchar(32) primary key, title text, publisher varchar(1..
오류 메세지 cannot create poolableConnectionFactory(Could not connect to 192.168.0.62:3306 : unexpected end of stream. read 0 bytes from 4 (socket was closed by server)) 해결 시도 방법 1. mysql > show global variables like 'skip_name_resolve'; 2. 쓰레드와 시간 조절 - 믹스(select, update는 like)로 쓰레드 1000개 1분 요청시 오류발생 - 믹스로 쓰레드 100개 1분은 잘돌아감 - 셀렉트문만 쓰레드 1000개 1분도 잘돌아감 - 업데이트(쿼리 like에서 where vod_no으로 변경)만 쓰레드 1000개 1분시..
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/l..
1. mysql 8.0 버전 설치 https://websiteforstudents.com/install-mysql-8-0-on-ubuntu-16-04-17-10-18-04/ 2. 외부 접속 허용 (외부 컴퓨터에서 서버 DB에 접속하기 위해서 필요) mysql > use 디비명; mysql > create user 'root'@'%' identified by 'teamnova'; * root 자리는 사용자계정, teamnova 자리는 계정 패스워드, % 는 허용하는 아이피 주소를 모두로 함 mysql > grant all privileges on *.* to 'root'@'%'; mysql > flush privileges; mysql > select host, user from mysql.user; //..
* 쿼리캐시 mysql > show variables like '%query_cache_type%'; // 쿼리캐시 on/off 확인 mysql > show variables like 'have_query_cache'; // mysql 서버에 현재 쿼리 캐시가 존재하는지 확인 mysql > show status like 'Qcache%'; // 쿼리캐시 모니터링 mysql > reset query cache // 쿼리 캐시에 들어있는 모든 쿼리 결과를 삭제 * 캐시 삭제가 안될 때는 # service mysql restart 해주면 리셋됨 (터미네이터 쓰면 터미널 창 전환없이 편하게 쓸 수 있다고 함. 나중에 터미네이터 써보기) * 쿼리캐시 상태 설정은 conf 파일에서 query_cache_type=0..
설치는 아래 링크 참고(version은 9.5.14임) https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-16-04 # cd /etc/postgresql/9.5/main # gedit pg_hba.conf IPv4, IPv6을 host all all 0.0.0.0/0 trust 로 변경 # gedit postgresql.conf listen_address 주석을 풀고 listen_addresses='*' 로 변경 postres 시작# sudo su -l postgres 인터렉티브 쉘 액세스 (테이블 만들고 수정하는 곳으로 접근)# psql 패스워드 변경# alter user postgres..
데이터베이스 설치할 때 의존성 문제 생길 경우 #cd /etc/apt/sources.list.d/ 에서 들어있는 리스트 확인 후 현재 설치하려는 디비와 충돌되는 리스트가 있으면 삭제 Postgresql 설치 방법 https://websiteforstudents.com/installing-postgresql-10-on-ubuntu-16-04-17-10-18-04/
1. server 서버컴퓨터에 db를 설치한다.2. server db에서 외부접속을 해제해준다. 명령어 & conf파일에서 로컬주소 # 처리하기 > grant all privileges on *.* to 'root'@'%' identified by 'teamnova' with grant option; > flush privileges; 3. client 컴퓨터에서 jmeter를 설치한다.4. client jmeter plugin 설치5. client 해당 db 의 jdbc 를 설치해서 /lib or /ext 폴더에 넣어준다. 6. client jmeter의 jdbc connection configuration 에서 jdbc의 경로를 잡아준다. 7. client 실행 ok? jmeter choose ran..