:::: 개발 :::: 456

유튜브 api 활용 목록 가져오기

할려고 하는건 유투브 아이디로 채널 조회 후 다시 채널 아이디로플레이 리스트 (재생목록) 조회플레이 리스트 아이디로해당 영상 목록을 가져오는 방법이다.. 뭔가 쉽지 않타 ㅎㅎ 올해안에 만들어야 할틴디 youtube api 공부중... https://developers.google.com/youtube/v3/docs/channels/list 특정 아이디 채널 아이디 조회 https://developers.google.com/youtube/v3/docs/playlists/list 채널ID > 플레이 리스트 조회 https://developers.google.com/youtube/v3/docs/playlistItems/list 플레이 리스트ID > 영상 리스트 조회

디지털오션 centOs mariaDB (mysql ) 설치하기..

Here is your custom MariaDB YUM repository entry for CentOS. Copy and paste it into a file under /etc/yum.repos.d/ (we suggest naming the file MariaDB.repo or something similar).VI 로 해당 파일 만든다vi /etc/yum.repos.d/mariaDB.repo# MariaDB 5.5 CentOS repository list - created 2014-12-16 08:14 UTC # http://mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/5.5/c..

디지털 오션 센토스(CentOs) JDK & tomcat 설치 정리

JDKhttp://luckyyowu.tistory.com/122 * 심볼릭 링크는 윈도우 바로가기 정도로 이해 하면 됨 TOMCAT http://luckyyowu.tistory.com/124 센토스 7.0 이상 부터는 방화벽 설정이 iptables 에서 firewalld 아래 URL 방식으로 바뀜새로운 방화벽 참고 1 http://2cpu.co.kr/m/bbs/board.php?bo_table=QnA&wr_id=427088새로운 방화벽 참고 2 http://www.oracle-base.com/articles/linux/linux-firewall-firewalld.php chkconfig --add 오류 날때 ( tomcat 서비스 는 chkconfig 를 지원 하지 않습니다 )http://knackfor..

우분투 방화벽 제어법 ufw

iptalbes... 설치도 안되어 있고 해서 서치~~ 간단하네 우선 포트가 열렸는지 확인해본다 netstat -an | grep "LISTEN " 다행이 8080 열려 있다 ㅎㅎ 톰켓 설치 후 안열려 있으면 reset (리부팅 ) 톰켓 설치법 분명 포트는 보이는데 접속이 안되었다.. 방화벽이 적용되어서 특정포트만 허용되고 있었다 그래서 8080 추가.. sudo ufw allow 8080/tcp 참고 사이트http://hwibin.tistory.com/99 [방화벽 켜기]sudo ufw enable [방화벽 끄기]sudo ufw disable [방화벽 특정 포트/프로토콜 개방]sudo ufw allow (개방할 포트번호) / (프로토콜)ex> sudo ufw allow 3306/tcpex> sudo u..

디지털오션 mariaDB 외부 접속 가능하게..

▷ test 데이타베이스에 sysop 계정이 111.222.333.444 IP 에서 접속 가능하게 설정한다.GRANT all privileges on testDB.* to 'root'@'111.222.333.444' identified by '비번' ; ▷ test 데이타베이스에 sysop 계정이 모든 IP 에서 접속 가능하게 설정한다.GRANT all privileges on testDB.* to 'root'@'%' identified by '비번' ; 출처http://bizadmin.tistory.com/25 1. my.cnf 파일에서 캐릭터셋수정root@imakeit:~# vi /etc/mysql/my.cnf 추가할부분[mysqld] character-set-server=utf8 collation-..

디지털오션 mariaDB (mysql ) 설치하기..

아오 블로그 보고 했다가 계속 오류.. https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist&distro=Ubuntu&version=10.0&distro_release=trusty mariaDb 사이트 보고 한방에 성공 ㅎㄷㄷㄷ Here are the commands to run to install MariaDB on your Ubuntu system:sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db sudo add-apt-repository 'de..