일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 예제
- 강좌
- 잡토이
- 스크래치
- s4a
- MSSQL
- 아두이노
- 시작하기
- Android
- Spring Security
- 톰캣
- 안드로이드
- html5
- 파주
- 설정
- 코딩
- 운정
- oracle
- librecad
- tomcat
- jsp
- 라즈베리파이
- 유니티
- 리브레캐드
- mysql
- 잡토이 메이킹 코딩 학원
- 오라클
- jobtoy
- Unity
- 설치
- Today
- Total
목록CentOS (5)
랩제이
[centos 톰캣 catalina.out 한글 깨짐 해결] bin 디렉토리에 setenv.sh 파일 추가함- setenv.sh#!/bin/shJAVA_OPTS="$JAVA_OPTS -Dfile.encoding=\"utf-8\"" [centos 톰캣 catalina.out 한글 깨짐 해결]
[centos 톰캣 한글 파일명 업로드시 글씨 깨짐 현상 해결] 1. tomcat 웹서버를 운영중인데 파일 업로드시 파일이 깨짐 2. 서버 locale 설정 변경 3, 수정 후 재부팅 필요함shutdown -r now 4. tocmat 웹서버로 다시 한글명 파일 업로드-> 정상임 [centos 톰캣 한글 파일명 업로드시 글씨 깨짐 현상 해결]
http://www.koreaoug.org/dbms/2039 MySQL 사이트에서 Yum Repository 사용한 설치를 위해 아래 이름의 파일을 다운 받는다. down mysql57-community-release-el6-8.noarch.rpm [root@testora ~]# yum search mysql-communityLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: ftp.daumkakao.com * extras: ftp.daumkakao.com * updates: ftp.daumkakao.com===============================..
[mysql] centos 구버전 mysql 사용시 secure_auth 접속 오류 해결 1. old_passwords=1 추가하기 /etc/my.cnf 파일에 old_passwords=1 추가한다. 2. 암호 새로 설정하기이미 등록한 유저라면 set password for ~ 를 이용해서 localhost, % 로 설정해주면 된다. mysql> SET @@session.old_passwords = 0; Query OK, 0 rows affected (0.00 sec) mysql> SELECT @@session.old_passwords, @@global.old_passwords; +-------------------------+------------------------+ | @@session.old_p..