일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- php
- 스크립트
- 전자정부 표준프레임워크
- checbox
- json
- switch
- jquery
- html
- Oracle
- maven
- JSTL
- 오라클
- 호환성
- 문자열
- RADIO
- SSL
- 톰캣
- 이클립스
- MYSQL
- java
- DB
- 네이버스마트 에디터
- 한글
- null
- HTML5
- 날짜
- 웹 플랫폼 설치 관리자
- exception
- spring form tag
- @RequestBody
- Today
- Total
목록분류 전체보기 (525)
개인적인 정리
MySQL 버전 확인 1 #./mysql --version ./mysql Ver 8.0.18 for Linux on x86_64 (Source distribution) 2. mysql>select version(); +-----------+ | version() | +-----------+ | 8.0.18 | +-----------+ 1 row in set (0.00 sec) 3. mysql> SHOW GLOBAL VARIABLES LIKE '%ver%'; +---------------------------------+--------------------------------------+ | Variable_name | Value | +---------------------------------+----..
페이스북 페이지 게시물 가져오기 아래 URL을 클릭 https://developers.facebook.com/tools/explorer 조회하는 곳에 me/accounts?fields=access_token, name, id 로 입력하고 제출 클릭 아래와 같은 데이타가 나온다 id와 access token을 https://graph.facebook.com/v5.0/{id}/feed?access_token={access_token} 와 같이 입력한다. 가져오는 필드는 아래와 같이 입력을 해주게 되었다. &fields=message,permalink_url,created_time,picture,full_picture 가져오는 필드에 link를 넣을 경우 다음과 같은 에러가 발생하였다. 이전 단순히 게시물을 ..
CentOs 에서 ssh 포트 변경 시나리오 22번 port를 1022 번으로 변경. 1. 먼저 방화벽을 열어준다. #sudo firewall-cmd --permanent --zone=public --add-port=1022/tcp 2. 방화벽을 재시작해준다. #sudo firewall-cmd --reload 3. 포트를 변경한다. #vi /etc/ssh/sshd_config #Port Port 1022 를 같이 맨 아래 혹은 적당한 곳에 입력하거나 기존에 등록된 부분을 수정해준다. 4. 재시작(selinux 사용시) #semanage port -a -t ssh_port_t -p tcp 1022 *** systemctl restart sshd 하면 아래와 같은 오류가 발생한다.(selinux를 사용하지 ..
vmware 에서 CentOs 설치시 아래와 같은 에러가 발생하였다. pain is dead Section %packages does not end with %end. CentOs 설치 폴더에서 autoinst.iso 를 지우고 다시 시작해보니 잘 된다. * vmware를 update 버전이 나와서 업데이트 한 후에 설치를 해보니 일단은 위와 같은 증상이 발생하지 않았다. (2020.08)
Download CentOS cent os를 다운로드 받기 위해서는 아래 URL로 이동한다. https://www.centos.org/download/ Download CentOS Download CentOS You now have two ways to consume the CentOS platform, CentOS Linux and CentOS Stream. CentOS Linux is a rebuild of the freely available sources for Red Hat Enterprise Linux (RHEL). CentOS Stream is a midstream distribution that provides a c www.centos.org 최선버전의 CentOS를 다운받을 수 있다. ..
A Facebook Feed story facebook 에서 게시물 목록 가져올 때의 필드(항목) 사용법 https://graph.facebook.com/v5.0/{post-id}/feed?access_token={access_token} &fields=message,link,created_time,picture&attachments,message,picture,name,caption,description,source 의 형태로 사용가능 56개의 항목을 제공한다. id actions admin_creator allowed_advertising_objectives application backdated_time call_to_action can_reply_privately caption child_atta..
1. 폴더가 하나일 때 tar cvzf aaaa.tgz test/ --exclude test/bbb 2. 폴더가 여러개 일 때 tar cvzf aaaa.tgz test/ --exclude test/bbb --exclude test/ccc https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_tar_%ED%8A%B9%EC%A0%95%ED%8F%B4%EB%8D%94_%EC%A0%9C%EC%99%B8%ED%95%98%EA%B3%A0_%EC%95%95%EC%B6%95%ED%95%98%EA%B8%B0 리눅스 tar 특정폴더 제외하고 압축하기 - 제타위키 다음 문자열 포함... zetawiki.com
du -sh ./ https://www.manualfactory.net/10591 리눅스 / 명령어 / du - 디렉토리와 파일 용량 확인하는 명령어 du는 disk usage의 약자로 디렉토리(폴더)와 파일의 용량을 출력해주는 명령어입니다. du 디렉토리명 디렉토리와 모든 하위 디렉토리의 용량을 표시해줍니다. 예를 들어 du /etc 라고 하면 etc 디렉토리와 그 하위 디렉토리의 사용량이 출력됩니다. 단위는 [...] www.manualfactory.net