You cannot see this page without javascript.

forever 설치

Linux 조회 수 662 추천 수 0 2015.06.10 16:46:19

Ubuntu

#
# Update Ubuntu and Install Git, OpenSSL, and pkgconfig
#
apt-get -y update 
apt-get -y install git-core build-essential libssl-dev pkg-config

#
# Install node
#
git clone http://github.com/joyent/node.git
cd node
git checkout v0.6.7
./configure
make
make install

#
# Install forever
#
cd ../
npm install forever -g

CentOS

#
# Update CentOS
#
yum update
rpm -ivh http://repo.webtatic.com/yum/centos/5/`uname -i`/webtatic-release-5-1.noarch.rpm
yum install openssl-devel pkgconfig gcc gcc-c++ kernel-devel make git

#
# Install Node and Forever
#
cd /usr/src
git clone http://github.com/joyent/node.git
cd node
git checkout v0.6.7
./configure
make && make install
cd /root
npm install forever -g

Gentoo

#
# Update system
#
emerge --sync
emerge portage

#
# Install git, and other dependencies
#
emerge --verbose dev-vcs/git dev-util/pkgconfig

#
# Install python 2.7
#
wget curl http://python.org/ftp/python/2.7/Python-2.7.tgz -o Python2.7.tgz
tar -zxvf Python2.7.tgz
cd Python-2.7
./configure
make && make install
mv /usr/local/bin/python /usr/local/bin/python2.6.2
mv /usr/local/bin/python2.7 /usr/local/bin/python
cp -f /usr/local/bin/python /usr/bin/python

#
# Install node, npm, and forever
#
git clone git://github.com/joyent/node.git
cd node
git checkout v0.6.7
./configure
make && make install
cd ../
npm install forever -g
List of Articles
번호 제목 글쓴이 날짜sort 조회 수
129 Linux Install PHP 5.5.13 modules LynX 2014-06-27 11868
128 Linux Fedora20 바탕화면 아이콘 설정 file LynX 2014-06-27 333
127 Linux Linux Apache 2.4 설치 LynX 2014-06-27 290
126 Linux Fedora 크롬 루트로 실행 LynX 2014-06-27 648
125 Linux CentOS (5.x, 6.x) - Apache Web Server 2.4 file LynX 2014-06-26 686
124 Linux Linux 파티션 file LynX 2014-06-25 401
123 Server OpenSSL LynX 2014-06-19 987
122 HardWare usb 초기화 - diskpart file LynX 2014-06-17 430
121 Programing ActiveX 설치 안될 경우 file LynX 2014-06-13 448
120 Programing cab파일 만들기 file LynX 2014-06-13 426
119 Programing cab파일에 인증서 포함하기 LynX 2014-06-13 298
118 Programing OCX --> CAB 작성 file LynX 2014-06-13 2818
117 아래아 한글 웹 미리보기 LynX 2014-06-12 2689
116 아래아 한글 웹 한글 뷰어 소스 LynX 2014-06-11 9437
115 Server Windows에서 Apache 2.x, Tomcat 7.x 연동 후 가상호스트를 이용하여 서비스하기 LynX 2014-06-10 1679
114 HTML Tag DIV 태그 (레이어) LynX 2014-06-02 463
113 Java Script 레이어 팝업 LynX 2014-06-02 573
112 Java Script 달력 메뉴 file LynX 2014-06-02 346
111 Java Script 계산기 LynX 2014-06-02 342
110 E-Mail hmailserver 설치 LynX 2014-05-29 1126

XE Login