mysql Insert sample ( 인서트 예제) 기본인데 자꾸 까먹어 ㅎㅎ insert into 데이터넣을 테이블명 ( 컬럼1 ,컬럼2 ) values ( '드가1' ,'드가2' ) insert into admin_member ( userid ,userpwd )values ( 'test' ,'1234' ) :::: 개발 ::::/::: MSSQL ::: 2015.01.05
mysql create table sample (테이블 생성 예제) 그만때려 ~~ create table 테이블명 ( 컬럼 1, 컬럼2, ...) create table admin_member( no int(10) unsigned not null auto_increment primary key, userid varchar(20) not null, userpwd varchar(20) default '0000' not null); :::: 개발 ::::/::: MSSQL ::: 2015.01.05
안드로이드와 데스크탑 Css 분리법 첫번째 팁 Css 분리 요런식으로 분리가 가능하네요 ㅎㅎㅎ 재미나는 Css 입니다 :::: 개발 ::::/::: WEB 2.0 ::: 2014.12.22
유튜브 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 > 영상 리스트 조회 :::: 개발 ::::/::: JSCRIPT ::: 2014.12.18
디지털오션 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.. :::: 개발 ::::/└ CAFE24 호스팅 2014.12.16
디지털 오션 센토스(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.. :::: 개발 ::::/└ CAFE24 호스팅 2014.12.16
디지탈오션 프로모션 코드 무료 2달 digitalocean-coupon-codes 2014-12 코드.. http://www.newcoupons.info/digitalocean-coupon-codes/ 여기서 받았음 :::: 개발 ::::/└ CAFE24 호스팅 2014.12.11
우분투 방화벽 제어법 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.. :::: 개발 ::::/::: 리 눅 스 ::: 2014.12.11
디지털오션 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-.. :::: 개발 ::::/└ CAFE24 호스팅 2014.12.10
디지털오션 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.. :::: 개발 ::::/└ CAFE24 호스팅 2014.12.10