'분류 전체보기'에 해당되는 글 648건

  1. 2013/06/04 용비 두번째 사랑니 발치
  2. 2013/05/29 용비 CentOS 5.4 + NginX 1.4.1 + Lua 5.1.5 설치
  3. 2013/05/27 용비 CentOS 5.4 + NginX 1.2.8 + PostgreSQL Module설치
  4. 2013/04/23 용비 CentOS 5.4 + PostgreSQL 8.1.23 설치 후 외부 접속
  5. 2013/04/22 용비 ODP 개발 서버 환경

두번째 사랑니 발치

Daily Memo 2013/06/04 17:31 용비
드디어.
오늘 두번째 오른쪽 아래 사랑니를 뽑았다.
정확히 기억이 나지 않지만, 2009년도 쯤에 오른쪽 위 사랑니를 뽑고 거의 4년만이다.

친절하신 의사 선생님 때문에 아무런 아픔없이 잘 뽑기는 했는데...
'앞으로 2년 내에 앞니 아래쪽 이빨 2개는 빠질 겁니다'라는 무시무시한 말씀을...-.-
그만큼 잇몸이 안 좋다고 하시면서 하루 빨리 잇몸 치료를 하라고 하시는데...

앞니 아래 이빨 2개가 빠진 상태를 생각해 보니 어우. 상상하기도 싫다.
매일 3번 양치로는 관리가 어렵나...
이제 나도 잇몸 관리를 받아야 하는 나이인가 보다.

에휴.
받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/560

1. LuaJIT 2.0, Lua 5.1.5 설치

LuaJIT 2.0 다운로드 : luajit.org/download.html
Lua 5.1.4 다운로드 : www.lua.org/ftp/

1) Lua 설치
Lua 압축해제 : tar -zxvf lua-5.1.5.tar.gz
cd lua-5.1.5
make linux test
* 오류가 발생하면 yum으로 해당 라이브러리 설치
* Hello World, Lua 5.1!과 비슷한 메시지가 마지막에 출력되면 제대로 구성됨.
make linux
make install
* /usr/local/에 설치됨.

2) LuaJIT 설치
LuaJIT 압축해제 : tar -zxvf LuaJIT-2.0.1.tar.gz
cd LuaJIT-2.0.1
make
make install

3) .bash_profile 수정
export LUAJIT_LIB=/usr/local/lib
export LUAJIT_INC=/usr/local/include

2. Nginx 설치

Nginx 1.4.1 다운로드 : nginx.org
Ngx_devel_kit 다운로드(v0.2.18) : github.com/simpl/ngx_devel_kit/tags
Ngx_lua_module 다운로드 (v0.8.2) : github.com/chaoslawful/lua-nginx-module/tags

1) 각 다운로드 받은 패키지 압축 해제
Ngnix : tar -zxvf nginx-1.4.1.tar.gz
ngx_devel_kit : tar -zxvf ngx_devel_kit-0.2.18.tar.gz
ngx_lua : tar -zxvf lua-ngx-module-0.8.2.tar.gz

2) 폴더 명 변경
mv ngx_devel_kit-0.2.18 ngx_devel_kit
mv lua-ngx-module-0.8.2 lua-ngx-module

3) Nginx Config 설정
./configure --prefix=$HOME/nginx \
--conf-path=$HOME/nginx/conf/nginx.conf \
--sbin-path=$HOME/nginx/sbin/nginx \
--lock-path=$HOME/nginx/lock/nginx.lock \
--pid-path=$HOME/nginx/run/nginx.pid \
--http-client-body-temp-path=$HOME/nginx/lib/nginx/body \
--http-proxy-temp-path=$HOME/nginx/lib/nginx/proxy \
--http-fastcgi-temp-path=$HOME/nginx/lib/nginx/fastcgi \
--http-uwsgi-temp-path=$HOME/nginx/lib/nginx/uwsgi \
--http-scgi-temp-path=$HOME/nginx/lib/nginx/scgi \
--http-log-path=$HOME/nginx/logs/access.log \
--error-log-path=$HOME/nginx/logs/error.log \
--with-debug \
--with-http_addition_module \
--with-http_addition_module \
--with-http_degradation_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--with-http_image_filter_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_realip_module \
--add-module=$HOME/ngx_postgres \
--add-module=$HOME/ngx_http_auth_request_module \
--add-module=$HOME/nginx-eval-module \
--add-module=$HOME/lua-nginx-module \
--add-module=$HOME/ngx_devel_kit \
--user=nobody \
--group=nobody

4) 설치
make && make install

받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/559

1. 소프트웨어 버전

Cent OS : 5.4
NginX : 1.2.8
Postgre Module : 최신버전 (https://github.com/FRiCKLE/ngx_postgres.git)

2. NginX 설치

1) 사전 필수 의존 라이브러리 설치
yum -y install gcc g++ cpp gcc-c++ pcre-devel openssl openssl-devel gd gd-devel

2) PostgreSQL 라이브러리 설치
yum -y install postgresql-*

3) NginX Configuration
./configure --prefix=$HOME/nginx \
--conf-path=$HOME/nginx/conf/nginx.conf \
--sbin-path=$HOME/nginx/sbin/nginx \
--lock-path=$HOME/nginx/lock/nginx.lock \
--pid-path=$HOME/nginx/run/nginx.pid \
--http-client-body-temp-path=$HOME/nginx/lib/nginx/body \
--http-proxy-temp-path=$HOME/nginx/lib/nginx/proxy \
--http-fastcgi-temp-path=$HOME/nginx/lib/nginx/fastcgi \
--http-uwsgi-temp-path=$HOME/nginx/lib/nginx/uwsgi \
--http-scgi-temp-path=$HOME/nginx/lib/nginx/scgi \
--http-log-path=$HOME/nginx/logs/access.log \
--error-log-path=$HOME/nginx/logs/error.log \
--with-http_addition_module \
--with-http_addition_module \
--with-http_degradation_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--with-http_image_filter_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_realip_module \
--add-module=$HOME/ngx_postgres \
--user=nobody \
--group=nobody

4) make && make install




받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/558

1. OS 방화벽에서 5432 포트 오픈 (외부에서 TCP/IP 연결하기 위함)
2. data 폴더 아래의 postgresql.conf 파일 변경
listen_addresses = 'localhost' => listen_addresses = '*'
port = 5432

3. pg_hba.conf 파일 변경
host     all       all       0.0.0.0/0       trust
4. PostgreSQL 시작
./pg_ctl -D $HOME/pgsql/data start
받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/556

ODP 개발 서버 환경

Articles 2013/04/22 18:26 용비
1. OS : Linux CentOS 5.4
2. Java : OpenJDK 1.6.0.31
3. Database : PostgreSQL 8.1.31
4. WAS : Jboss 7.1.1.Final
5. Gateway Application : Jersey를 이용한 Java Servlet
받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/555