일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL 5.1.41
- PHP 5.2 .ini
- Repository
- gcc update
- httpd-mpm.conf
- mod_unique_id
- httpd.conf
- Node.js 소스 설치
- httpd 2.2.32
- python 3.5.10
- httpd-vhosts.conf
- Node.js apache 연동
- httpd-info.conf
- CentOS 6
- httpd-dav.conf
- httpd-default.conf
- unique_id
- PHP 5.2.17 .ini
- httpd-autoindex.conf
- vim color scheme
- epel repository
- jQuery
- python 3.X 소스 설치
- node.js
- CentOS
- CentOS 6.10
- vimrc 옵션
- Mod_Security 룰 셋
- MySQL
- apache 연동
- Today
- Total
목록CentOS 6.10 (46)
곰시기's
apache-2.2.32 설치 # cd /usr/local/src/ # tar zxvf httpd-2.2.32.tar.gz -C /var/tmp/ # cd /var/tmp/httpd-2.2.32/ # vi server/mpm/prefork/prefork.c - 77 line : #define DEFAULT_SERVER_LIMIT 4096으로 수정 # vi server/mpm/worker/worker.c - 85 line : #define DEFAULT_SERVER_LIMIT 256으로 수정 # ./configure \ --prefix=/usr/apache \ --enable-shared=all \ --enable-rule=SHARED_CORE \ --enable-unique-id \ --enable-so..

설치 전 정보 운영체제 Windows 10 Pro - 64 bit 가상머신 VirtualBox 6.1 리눅스 운영 체제 CentOS 6.10 - 64 bit MySQL mysql-5.1.41 Apache httpd-2.2.32 PHP php-5.2.17 설치 전 필요 패키지 # yum -y install ncurses-devel gcc gcc-c++ openssl-devel libtool # yum -y install zlib curl libtermcap-devel libc-client-devel bzip2-devle bison * libtermcap-devel ( 데이터베이스에 접근하는 데 사용되는 개발용 도구 ) MySQL 설치 # groupadd mysql # useradd -g mysql mysq..

usb, disk, cd - mount / umount mount? 물리적 장치를 디렉터리에 연결시켜 주는 것 ( window에서는 Plug N Play라고 해서 OS가 자동으로 잡아 줌 ) 사용법 # fdisk -l로 mount 할 장치 확인 ( Device Boot ) # mkdir /tmp/usb mount 할 디렉터리 생성 # mount /dev/sdb1 /tmp/usb usb디렉터리에 USB를 mount # umount /dev/sdb1 mount해제

화면 해상도 설정 - 화면 해상도가 낮은 경우 넓은 화면을 볼 수가 없으므로 해상도 설정을 바꿔보자 설정 파일 변경 # vi /etc/grub.conf kernel 뒤에 vga 설정 추가 # reboot * /etc/grub.conf 또는 /boot/grub/grub.conf 또는 /boot/grub/menu.lst 중 하나만 변경하면 된다. * vga뒤에 숫자 대신 ask를 넣으면 부팅 중 원하는 해상도를 선택할 수 있다. 2020.11.26 추가 서버 재부팅 시 자동으로 시간 정보 적용하기 # vi /etc/rc.d/rc.local 아래 두 줄 추가 /usr/bin/rdate -s time.kriss.re.kr -- kriss라는 시간 서버 설정을 가지고와 현재 서버의 시간을 재설정 /sbin/clo..