Web62 centOs 7.x / Node js yum install # Install Node.js 7.x repository (7.x 버전부터는 아래 추가) curl -sL https://rpm.nodesource.com/setup_7.x | bash - # Install Node.js and npm yum install nodejsyum install npm nodejs #설치/버전 확인 node -v npm -v #웹서버 설치하여 페이지 확인vi /home/basic.js------------------------------------------- var http = require('http');var hostname = 'host이름 or ip 주소입력'; var port = 3000;http.createServer(function(req, res){ res.wr.. 2018. 2. 26. CentOs 7.1v / APM(php 7) install centos 7.1 v 에서 apm 설치 [기존 설치파일 삭제] yum remove -y httpd* yum remove -y php* yum remove -y mysql* [yum 업데이트] yum -y update [아파치 설치] yum install httpd [실행설정] systemctl enable httpd systemctl start httpd [설치확인] rpm -qa | egrep "^(httpd*|mariadb*|mysql*|php*)" [방화벽 등록] firewall-cmd --permanent --zone=public --add-service=http firewall-cmd --reload [마리아db 설치] yum install mariadb-* [실행설정] systemctl en.. 2018. 2. 26. 이전 1 ··· 8 9 10 11 다음