17년 1월 기준. pg_ctl -D pgsql/data start // db 시작 pg_ctl -D pgsql/data -m fast stop // db 정지 psql -p 5432 db user // db 접속. db까지만 적어도 접속됨. psql -h 192.168.4.158 -U postgres // host, User 옵션 \d // 테이블 확인 \du // 권한 확인 \l // 데이터베이스 확인 \q //접속종료 \dS+ rps_rbt_profile; // 테이블 정보 조회 pgsql/bin/psql: error while loading shared libraries: libpq.so.5: cannot open shared object file: No such file or directory ..
17년 5월 기준. yum repolist Cannot retrieve metalink for repository: epel. Please verify its path and try again // epel 문제 yum upgrade ca-certificates --disablerepo=epel // epel 재설치 yum clean all // yum clean rpm -Uvh https://yum.opennms.org/repofiles/opennms-repo-stable-rhel6.noarch.rpm // yum 안될때 rpm 파일 설치후에 yum. yum provides "*/" // 에러파일 yum 검색 Cannot retrieve metalink for repository: epel. Pleas..
17년 5월 기준. PC 카카오톡 vmware 설치 android cannot open disk drive 오류때문에 하드디스크 설정을 보니 SCSI로 되어있었음. IDE로 해야 제대로 인식함. 하드를 2GB로 하니 GNU GRUB으로 뜨고 부팅이 제대로 안됨. 4GB는 되어야 사용할수 있다고해서 4G로 변경. 메모리도 512MB로 잡아주는게 좋다고 함. vmware 용량 늘리기 Progress state: VBOX_E_NOT_SUPPORTED VBoxManage.exe: error: Resize medium operation for this format is not implemente d yet! // vmdk 포맷은 리사이즈 지원안함 VBoxManage clonehd "D:\VirtualBox VMs..
16년 4월 기준. 네트워크 설정 어댑터1 NAT. 포트포워딩 포트 8080 설정 어댑터2 브리지 어댑터 이렇게 설정하고, 잡히는 가상IP(192.168.0.81)로 접속 // tomcat은 wget으로 받아서 설치. yum install tomcat은 제대로 안됨. 방화벽 포트 추가 # firewall-cmd --permanent --zone=public --add-port=포트 firewall-cmd --permanent --zone=public --add-port=8080/tcp # firewall-cmd --reload putty ssh 22 접속가능 filezilla sftp 접속가능 CentOS 7은 부팅시 /etc/rc.local 실행 안됨. chmod u+x /etc/rc.d/rc.loca..
16년 11월 기준. VirtualBox CPU 100% // VirtualBox CPU 100%일 경우 네트워크 IPv4 제외하고 모두 해제 또는 윈도우 업데이트 끄기 Virtualbox 게스트 확장 설치 장치-게스트 확장 설치-Run-패스워드 입력 Authenticate [2.485182] [drm:vmw_host_log [vmwgfx]] *ERROR* Failed to send host log message 설정-디스플레이-그래픽 컨트롤러-VBoxVGA로 변경 // 보통 로컬에 가상환경 구축할 때 브릿지 어댑터로 구성해서 추가. 공유 프린터 및 WAS 등 같은 환경에서 작업 가능. 호스트키 Right Ctrl 안먹힘. Ctrl+Alt로 설정 머신 폴더 설정 // 파일-환경 설정-일반-기본 머신 폴더..
13년 2월 기준. msdn http://msdn.microsoft.com Microsoft Virtual Academy http://www.microsoftvirtualacademy.com // 개발 정보 및 강좌 Microsoft DreamSpark http://www.dreamspark.com // 학생 개발지원 Windows Store 등록 https://appdev.microsoft.com/StorePortals/ SNZY4MY http://msdn.microsoft.com/ko-kr/library/windows/apps/br229519.aspx // Windows 스토어 앱 구축 학습 https://flow.microsoft.com/ko-kr/desktop/ https://docs.micros..
23년 5월 기준. 팀즈 들여쓰기 중단 I'm not aware of a way to turn off auto formatting but Ctrl+Z will undo it. // 기능을 disable하는 옵션은 없는듯 하고, Ctrl+Z로 취소가 최선인듯 하다. ex) 1. 자동완성시, Ctrl+Z하면, 1. 2. 이렇게 조절 가능. https://answers.microsoft.com/en-us/msteams/forum/all/i-want-to-disable-auto-formatting-in-teams-is-it/08f230ff-6db7-490f-bb62-0e2c49699524 방법 찾음. https://answers.microsoft.com/en-us/outlook_com/forum/all/how-..
19년 11월 기준. package apiTest; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class Test { public static void main(String[] args) { String apiURL = "https://alpha-api.ticketlink.co.kr/"; String token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsidGlja2V0bGluay1hcGkiXSwidXNlcl9uYW1lIjoiMTI0NjgiLCJzY29wZSI6WyJyZWF..
2020년 4월 기준. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://finance.naver.com/sise/sise_rise.nhn'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $result = curl_exec($ch); echo iconv("euc-kr","utf-8", $result); // https snoopy 안됨. https curl 사용. preg_match('/(.*?)/is', $result, $text); echo $text[0]; preg_match('/(.*?)/is', $result, $t..
19년 11월 기준. varchar2(10). 10byte. 한글 2byte 5글자. lengthb 한글 3byte로 잡히는경우 문제. SELECT * FROM nls_database_parameters WHERE parameter = 'NLS_CHARACTERSET' or parameter ='NLS_NCHAR_CHARACTERSET' AL32UTF8 한글 3바이트. AL16UTF8 한글 2바이트 select * from nls_database_parameters; update sys.props$ set value$='KO16MSWIN949' where name='NLS_CHARACTERSET'; update sys.props$ set value$='KO16MSWIN949' where name='NLS..