본문 바로가기

전체 글

(720)
개발/서버
Intel Core i7 920, 940 and 965 Extreme Edition Introducing the new Core i7Today marks the release of Intel's latest and greatest processor architecture to date. For the past two years Intel has dominated the CPU market with their Core 2 processors, reaping havoc on AMD's Athlon and Phenom products. Yet despite of this significant dominance, Intel will be pushing the Core 2 aside and make room for the new Core i7 processor series. When you co.. 2019.01.05
개발/서버
apache favicon.ico HTTP/1.1" 404 에러 처리 (1) error.log 상에 favicon.ico 로그 안찍히게 하는 방법* error.log 에러로그=> [Wed Aug 24 11:10:52 2011] [error] [client 10.225.23.118] File does not exist: /jboss/jboss-as-web-7.0.0.Final/standalone/deployments/test.war/favicon.ico * 설정파일 : httpd.conf* 설정방법은 아래와 같다. (error.log 아래에 붙이면 된다.)Redirect 404 /favicon.ico ErrorDocument 404 "No favicon" (2) access.log 상에 favicon.ico 로그 안찍히게 하는 방법* access.log 에러로그 => /fa.. 2019.01.05
개발
구글 xshell 키 생성 xhell -> 도구 -> 사용자 키 생성 RSA 2048 비트 옵션으로 생성 키이름 아무거나 지정 암호 입력 하거나 없거나 키 내용 복사 - 구글 메타데이터 SSH키 생성 -> 붙여넣기 키 내용 맨 뒤에 == VM 계정 2018.11.12
개발/Mysql
mysql 백업및 복구 백업하기1) DB별로 백업mysqldump -u root -p DB명 > 파일명.sql 2) 전체 백업mysqldump -u root -p –all-databases > 파일명.sql 3) 캐릭터셋 옵션을 이용하여 백업mysqldump -u root -p –default-character-set=euckr DB명 > 파일명.sql (euckr, utf8 등이 있음) 4) 특정 테이블만 덤프mysqldump -u root -p DB명 테이블명 > 파일명.sqlmysqldump -u root -p -B DB명 –tables 테이블명1 테이블명2 테이블명3 > 파일명.sql 5) 테이블 구조만 백업 mysqldump -u root -p –no-data DB명 > 파일명.sql 6) XML 파일로 백업 mysq.. 2018.11.10
개발/seo
검색에 최적화된 페이지 제작 1. URLhttp://anews.smartflex.org/?id=1 보다는 http://anews.smartflex.org/검색에-최적화된-페이지제작/url 과 키워드를 동일하게 지정 하는것이 좋다 2. 사이트 구조검색엔진이 탐색하기 좋은 구조로 만든다- 페이지 dept 를 줄인다 - 서브페이지에서 상위페이지로 갈수있는 링크가 포함되어야 한다- 자바스크립트나 플래쉬등으로의 링크작동을 줄인다 3. 태그 사용 등은 페이지에서 단 한번 사용 키워드로 사용 4. img 태그alt = '' 는 검색 엔진에 검색된다. 이미지 파일 이름을 읽을수 있게 적용한다 2018.10.30
개발/linux
CentOS 비트확인 getconf LONG_BITarchuname -mecho $HOSTTYPElscpu | grep ^Arch 2018.09.13