일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html
- Eclipse
- 컬럼명
- decompiler
- WebView
- MS-SQL
- Web Service
- Apache Lucene
- 웹뷰
- TextBox
- 안드로이드
- STS
- varags
- 자바
- Android
- javascript
- Maven
- scrollView
- jsp
- SpringSource Tool Suite
- asp.net
- Bootstrap
- MANTIS
- 이클립스
- 자바스크립트
- Redirect
- MSsql
- Java
- 웹 서비스
- C#
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
Question: How do I executed PostgreSQL Commands inside a Linux / UNIX shell script?Answer: With the help of the psql interactive terminal, you can execute the psql commands from the shell script. For this purpose, you should enable the password less login by pg_hba.conf, or .pgpass. Syntax psql DBNAME USERNAME
File -> Options -> Query tool -> Max. characters per column 을 -1로 변경 [출처] Select whole column content in pgAdmin
serializeObject function 추가 $.fn.serializeObject = function() { var o = {}; var a = this.serializeArray(); $.each(a, function() { if (o[this.name] !== undefined) { if (!o[this.name].push) { o[this.name] = [o[this.name]]; } o[this.name].push(this.value || ''); } else { o[this.name] = this.value || ''; } }); return o; }; 호출 $.ajax({ url : 'url', contentType: 'application/json', data : JSON.stringi..
리눅스의 scp 명령어를 이용하면 사용 가능하지만 비밀번호라던지 시스템이 주기적으로 작업을 하기 위해서는 추가 설정이 필요아래의 작업은 CentOS7를 기반으로 작성 1. 소스 EC2 (서버1이라고 지칭)에서 수행1.1 scp, ssh, sftp, rsync를 수행하는데 필요한 keypair 생성1.2 쉘로 로그인 해서 아래의 명령어 수행 (생성시 passphrase에 비밀번호 입력금지)ssh-keygen -t rsa1.3 생성된 파일은 보통 /root/.ssh/id_rsa 또는 /home/ec2-user/.ssh/id_rsa 에 위치 2. 타켓 EC2(서버2라고 지칭)에서 수행2.1 "sshd_config" 파일 확인 (/etc/ssh/sshd_config에 위치)2.2 sshd_config파일에서 아..