You cannot see this page without javascript.

forever 설치

Linux 조회 수 660 추천 수 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
189 Linux 변경사항이 유지되는 리눅스를 USB메모리에 만들기(우분투 계열) [13] LynX 2015-01-07 583
188 CentOS centos7 groonga install LynX 2017-12-04 583
187 Linux 04 - 와이어샤크,접근제어,방화벽,텔넷,패킷 file [12] LynX 2012-11-29 585
186 Network VLAN 설정 ② Trunk mode / Routing file [12] LynX 2015-04-29 597
185 APM MySQL 5.7 바이너리 Archive 설치 file LynX 2017-02-02 603
184 Programing make - 01 make 란? file LynX 2017-02-22 610
183 Printer cura usb connection LynX 2018-07-06 614
182 Linux opensuse yum repository 추가 [13] LynX 2014-12-23 636
181 Linux letsencrypt wildcard LynX 2018-07-26 639
180 Linux Fedora 크롬 루트로 실행 LynX 2014-06-27 645
179 CentOS CentOS7 커널 업데이트 LynX 2018-04-23 645
178 CentOS7 ▒ Doly의 CentOS7 강좌30 12. 네트워크 보안설정 12.2 iptables 서비스 (1/3) file [11] LynX 2015-06-09 646
» Linux forever 설치 [18] LynX 2015-06-10 660
176 CentOS network card setup [1] LynX 2016-04-20 660
175 HTML Tag 모바일 웹에서 동영상 재생방법 LynX 2013-07-13 661
174 Linux LFS/Introduction - 소개 [8] LynX 2014-08-06 669
173 CentOS7 ▒ Doly의 CentOS7 강좌28 12. 네트워크 보안설정 12.1 firewalld (1/2) file [10] LynX 2015-06-09 671
172 Windows XP 핫픽스 통합 시디 만들기 [18] LynX 2013-06-20 675
171 Linux CentOS (5.x, 6.x) - Apache Web Server 2.4 file LynX 2014-06-26 684
170 Linux Linux 환경에서 ACE framework 설치하기 [11] LynX 2015-01-12 690

XE Login