일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SSL
- maven
- JSTL
- 웹 플랫폼 설치 관리자
- 오라클
- html
- Oracle
- DB
- json
- 톰캣
- RADIO
- null
- 네이버스마트 에디터
- java
- 스크립트
- HTML5
- jquery
- 문자열
- checbox
- spring form tag
- php
- switch
- 날짜
- exception
- 한글
- 전자정부 표준프레임워크
- @RequestBody
- 호환성
- MYSQL
- 이클립스
- Today
- Total
목록전체 글 (525)
개인적인 정리
https://dev.mysql.com/downloads/mysql/ MySQL :: Download MySQL Community Server Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linux / Oracle Linux Fedora Linux - Generic Oracle Solaris macOS FreeBSD Source Code Select OS Version: All Window dev.mysql.com 윈도우, 리눅스등 OS 및 OS version 에 맞춰 다운받을 수 있도록 되어 있다..
토드 엣지 다운로드 https://www.toadworld.com/products/downloads?type=Freeware&download=toad-edge Download Toad World Downloads No matter which database platforms you use, we offer solutions that make your job easier than ever. Get fully functioning software free for 30 days or download freeware. www.toadworld.com 모든 항목을 입력하고 나니 파일이 다운된다. 오라클용 Toad를 지속적으로 사용하다보니 MySQL 클라이언트로 Toad Edge를 사용중.

1) FileZilla Server 다운로드 https://filezilla-project.org/download.php?type=server Download FileZilla Server for Windows Download FileZilla Server for Windows The latest stable version of FileZilla Server is 0.9.60.2 Please select the file appropriate for your platform below. Windows Size: 2241216 bytes SHA-512 hash: 0e0a92f3693d31d09341354ce212f42e1941743cf5f49bffe58b0c05cb filezilla-project.org 2..
Download FileZilla Server for Windows https://filezilla-project.org/download.php?type=server Download FileZilla Server for Windows Download FileZilla Server for Windows The latest stable version of FileZilla Server is 0.9.60.2 Please select the file appropriate for your platform below. Windows Size: 2241216 bytes SHA-512 hash: 0e0a92f3693d31d09341354ce212f42e1941743cf5f49bffe58b0c05cb filezilla-..
같은 폴더 내에 aaa.jks, bbb.jks 2개의 인증서가 있는 상황이어서 인증서 정보를 확인할 필요가 있었다. 하나는 g-ssl이고 하나는 사설 ssl 인 상황. 사설이 bbb.jks인 것으로 보이는데 확신은 못하는 상황에서 인증서 정보를 확인하고 싶어짐 # keytool -list -keystore bbb.jks -v 로 하니 인증서 정보를 확인할 수 있었다. * 그러나 웹으로 보면 aaa.jks가 적용된 것처럼 보이는데. 웹 방화벽문제가 아닐까 . * 인증서 적용을 정상적으로 하였는데도 제대로 나오지 않는 경우에는 웹방화벽을 꼭 확인해볼 필요가 있는 것으로 보인다. 웹 방화벽에 적용해달라고 인증서를 보냈는데 몇달동안이나 적용하고 있지 않았음(누군가 중간에서 전달을 안했을 것으로 보임). 보안 사..
mysql 포트를 3306에서 다른 것으로 변경한 후에 접속 ./mysql -u aaa -p -P 포트번호 ./mysql -u aaa -p -P 1111 대문자 P
1. 파일전송 scp -P 포트번호 파일명 대상서버사용자명@ip:경로 #scp -P 1022 /home/aaa/aaa.tar.gz root@192.168.1.1:/home/bbb/ 2. 폴더 전송 scp -P 포트번호 -r 경로 대상서버사용자명@ip:경로 #scp -P 1022 -r /home/aaa/ root@192.168.1.1:/home/bbb/ 기본 포트를 사용할 경우 -P 1022 필요없음.
# cat /etc/redhat-release https://www.manualfactory.net/10698 CentOS / 버전 확인하는 방법 cat /etc/redhat-release [root@localhost ~]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) cat /etc/*release* [root@localhost ~]# cat /etc/*release* CentOS Linux release 7.4.1708 (Core) Derived from Red Hat Enterprise Linux 7.4 (Source) [...] www.manualfactory.net