개발/서버(84)
-
apache 디폴트 설정
apache 디폴트 설정 ## This is the main Apache HTTP server configuration file. It contains the# configuration directives that give the server its instructions.# See for detailed information.# In particular, see # # for a discussion of each configuration directive.## Do NOT simply read the instructions in here without understanding# what they do. They're here only as hints or reminders. If you are unsu..
2014.12.09 -
ssh scp remote file downloads
ssh scp remote file downloads scp -P portnumber account@ip:path ex ) scp -P 22 smartflex@smartflex.co.kr:/home/smartflex/file.tar /Users/download path
2014.12.08 -
start apache server I received an error
1) From command line type hostname to get your hostname. Example output might be example.com 2) Edit /etc/hosts and change the lines to match your hostname. Example: 127.0.0.1 localhost.localdomain localhost.localdomain localhost4::1 localhost.localdomain localhost.localdomain localhost6# smartflex192.168.1.30 smartflex.co.kr 3) Open your httpd.conf file and make sure ServerName is defined. If i..
2014.12.08 -
php compile troubleshooting
yum install libxml2-delvel yum install libxml2 configure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/ yum install libcurl yum install libcurl-devel GD install checking whether to enable JIS-mapped Japanese font support in GD… noIf configure fails try —with-vpx-dir= yum install libjpeg yum install libjpeg-devel yum install libpngyum install libpng-devel yu..
2014.12.08 -
RPM 사용법 정리
RPM 사용법 정리 RPM(Red Hat Package Management)은 레드햇 사와 수세 리눅스 사의 리눅스 배포본 제품에서 사용하는 패키지의 설치 및 제작 관리 소프트웨어다. RPM을 사용하면 패키지 관리를 쉽고 효율적으로 할 수 있다. 물론 레드햇 리눅스인 경우, '응용 프로그램 추가/삭제'(시작->시스템 설정->응용 프로그램 추가/삭제)에서 윈도우즈 식으로 쉽게 프로그램을 추가하고 삭제할 수 있지만 보다 구체적으로 작업을 하려면 역시 RPM이 필요하다. 여기서는 RPM 사용법을 간단히 정리해보겠다. RPM 버전 확인rpm --version RPM 도움말 출력rpm --help도움말이 길게 출력되므로 페이지 단위로 끊어보려면 다음과 같이 한다.rpm --help | lessrpm --help ..
2013.06.14 -
nginx 구라에 속지말자
nginx 서버 워커 방식으로 많은 동접 처리량 과 서버 퍼포먼스 뛰어나다는 그래프 신뢰성은 반으로 줄어든다. 테스트 물리 환경Xeon Quad Core 3.2GHz2G DDR3 nginx-1.4.1httpd-2.2.21 + php-5.3 + geoip 아파치 입장에서 상당히 불리안 상황으로 설정 해보았다 . 다만 아파치 프리포크 방식으로 max 6천으로 설정하고 nginx-1.4.1는 성능 좋다길래 8천 설정 했다 ab 툴로써는 nginx 가 데이터 상으로 압승이다. 네트워크 연결은 종료 되었으나 원격 수신 보장 상태netstat -nap | grep :80 | grep TIME_WAIT | wc -l 아파치 6천 닉스 8천 정상 처리 되었다고 나오면 에러 사항 없다 . 실제 . ..............
2013.06.14