반응형 centOS732 Centos7 resin 설치 (apache resin 연동) Resin 설치 wget https://caucho.com/download/resin-pro-4.0.66.tar.gztar xfvz resin-pro-4.0.66.tar.gz cd resin-pro-4.0.66 ./configure \--prefix=/usr/local/resion \--with-apxs=/usr/local/apache/bin/apxs make && make install Resin 확인 vi /usr/local/apache/conf/httpd.conf511 LoadModule caucho_module /usr/local/apache/modules/mod_caucho.so 2024. 7. 6. Centos7 APM 소스 설치 (mysql 5.1.73, Apache 2.4.6, PHP 5.4.16) 기본 라이브러리 설치yum install -y wget gcc gcc-c++ make cmakeyum install -y ca-certificatesyum install libtool-ltdl-devel -yyum install libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel -y APM 파일 다운로드cd /usr/local/srcwget https://sourceforge.net/projects/pcre/files/pcre/8.36/pcre-8.36.tar.gz/download //httpd 관련 파일wget https://dlcdn.apache.org/httpd/httpd-2.4.61.tar.gz //httpd 관련 파일.. 2024. 7. 4. Centos 센토스 Apache node.js 도메인 프록시 (proxy) 설정 및 확인 1. Apache 및 node.js 설치 2. node.js 3. Apache VirtualHost 설정 https://bigju.tistory.com/entry/VirtualHost-%EC%84%A4%EC%A0%95-%ED%95%98%EA%B8%B0 VirtualHost 설정 하기 기본 적으로 httpd apache 설치 되어있어야합니당 + AM 다 YUM 으로 설치 되었기때문에 경로는 본인이 설치한걸 기반으로 합니다 1. conf 설정 vi /etc/httpd/conf/httpd.conf NameVirtualHost *:80 ( 추가 / Apache 2.4.x tistory.bigju.co.kr # ServerAdmin DocumentRoot /home/bigju/public_html ServerNa.. 2023. 8. 31. Centos apache 20.04에 Node.js 설치 실행 1. epl 저장소 설치 yum install epel-release -y 2. Apache 설치 yum install libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel -y yum install httpd -y 3. Node.js 설치 yum install -y gcc-c++ make yum install nodejs -y 4. 테스트 작성 var http = require ('http'); http.createServer (function (request, response) { response.writeHead (200, {'Content-Type': 'text/html'}); response.end ('Welcome to.. 2023. 8. 30. centos7 - ntopng 설치하기 [centos ntopng / 모니터링] 구성환경 server : HP DL320e Gen8 v2 OS : Centos 7.9 모니터링 설피 :ntopng - ntopng 란? ntop은 네트워크에서 관련된 호스트들과의 관계를 네트워크 트래픽을 통해 모니터링하는 공개 소프트웨어이다 1. ntopng 저장소 추가 curl https://packages.ntop.org/centos/ntop.repo > /etc/yum.repos.d/ntop.repo 2. Epel 저장소 설치 yum install epel-release -y 3. zeromq3 설치 유무 확인 yum erase zeromq3 Loaded plugins: fastestmirror No Match for argument: zeromq3 No Packages marked for remo.. 2022. 5. 30. 이전 1 2 3 4 ··· 7 다음 more 반응형