일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vim color scheme
- python 3.X 소스 설치
- httpd-info.conf
- httpd-mpm.conf
- httpd 2.2.32
- httpd-vhosts.conf
- Repository
- PHP 5.2 .ini
- mod_unique_id
- Node.js 소스 설치
- vimrc 옵션
- httpd-dav.conf
- httpd-autoindex.conf
- epel repository
- CentOS
- jQuery
- Mod_Security 룰 셋
- MySQL
- MySQL 5.1.41
- CentOS 6
- python 3.5.10
- unique_id
- Node.js apache 연동
- apache 연동
- httpd.conf
- node.js
- httpd-default.conf
- CentOS 6.10
- PHP 5.2.17 .ini
- gcc update
- Today
- Total
목록Sever/CentOS 6.10 (18)
곰시기's
[client] #password= your_password port = 3306 # TCP 포트 번호 socket = /tmp/mysql.sock # 서버와 클라이언트 사이에 통신을하는 유닉스 소켓파일 [mysqld] port = 3306 # TCP 포트 번호 socket = /tmp/mysql.sock # 서버와 클라이언트 사이에 통신을하는 유닉스 소켓파일 #skip-locking # 비활성화시 외부 접근에 대한 제한( mysql Ver. 4.0.3 이전 ) skip-external-locking # 비활성화시 외부 접근에 대한 제한 skip-name-resolve # 활성화시 클라이언트에서 서버로 접속시 DNS Lookup 과정 skip old_passwords = 1 # 서버가 MySQL 계정용 ..
engine = On # Apache에서 PHP의 스크립트 엔진을 적용한다. # Off로 설정시 사용할 수 없다. short_open_tag = On #
httpd.conf httpd-autoindex.conf httpd-dav.conf httpd-default.conf httpd-info.conf httpd-languages.conf httpd-manual.conf httpd-mpm.conf httpd-multilang-errordoc.conf httpd-userdir.conf httpd-vhosts.conf

Node.js 설치 전 [python3.X 설치] node.js를 설치하기 위해 python의 버전을 2.7 이상으로 준비 # python -V 기존 python 설치 위치 * # which python # cd /usr/local/src/ # wget https://www.python.org/ftp/python/3.5.10/Python-3.5.10.tgz * Python ftp server * rc버전은 베타버전보다 살짝 개선 된 것이므로 rc보다 상위 버전을 사용할 것 * Python 설치 시 LANG=en_us.utf-8 로 변경 후 설치할 것 설치 후 LANG=ko_KR.EUC-KR 로 다시 변경 # tar -zxvf Python-3.5.10.tgz # cd Python-3.5.10 # ./con..