목록분류 전체보기 (104)
코드 잡동사니
http://devbible.tistory.com/89짱짱맨
http://whitecastle.tistory.com/entry/ORA-06552-ORA-06553-PLS-553-%EC%95%8C-%EC%88%98-%EC%97%86%EB%8A%94-%EB%AC%B8%EC%9E%90-%EC%A7%91%ED%95%A9-%EC%9D%B4%EB%A6%84%EC%9E%85%EB%8B%88%EB%8B%A4 오류 뜨는거
관리자 계정으로 들어간 후 host stty erase ^H 치면 된다 오예http://secuinfo.tistory.com/entry/WEB-Server-8
https://www.rootusers.com/how-to-reset-root-user-password-in-centos-rhel-7/ http://allthatlinux.com/dokuwiki/doku.php?id=root_%ED%8C%A8%EC%8A%A4%EC%9B%8C%EB%93%9C_%EB%B3%80%EA%B2%BD#redhat_7_%EB%B3%80%EA%B2%BD_%EB%B0%A9%EB%B2%95
오라클 유저 생성, 권한 부여SQL> create user test 2 identified by 1234 3 default tablespace users 4 TEMPORARY TABLESPACE TEMP;grant resource, connect to test;grant create session, create table to test;grant unlimited tablespace to test; http://yagi815.tistory.com/364 connect -> 데이터베이스에 접속할 수 있는 기본 권한resource -> 기본적인 객체를 생성, 변경, 삭제를 할 수 있는 권한create -> 해당 객체를 생성할 수 있는 권한 plustrace -> sql 문의 실행 경로를 추적할 수 있는 pl..
https://medium.com/hbsmith/too-many-open-files-%EC%97%90%EB%9F%AC-%EB%8C%80%EC%9D%91%EB%B2%95-9b388aea4d4e 여기서 보면 된다.
쿼리 검색할때 {'날짜 키':{$gte : ISODate("2017-07-10T07:05:46.758+0000")}} 하면 검색한 Date 보다 큰것만 조회가 됨 어그리게이션 쪽에서는 { 'dt':{'$gte' : ['$dt', ISODate("2017-07-10T07:05:46.758+0000")]}} $gte 안에 배열로 인자값 2개가 들어가야함 [key, data] 이렇게
출처 : https://medium.com/mongoaudit/how-to-upgrade-mongodb-to-latest-stable-version-9607266834cf 1. vi /etc/yum.repos.d/mongodb-org-3.4.repo 2. [mongodb-org-3.4]name=MongoDB Repositorybaseurl=https://repo.mongodb.org/yum/redhat/7/mongodb-org/3.4/x86_64/gpgcheck=1enabled=1gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc 3. sudo yum install -y mongodb-org 하고 mongo -version 을 치면 3.4 로 변한다 근데..