4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu Server + PostgreSQL + その他もろもろな環境を構築する。

Last updated at Posted at 2014-04-06

準備したもの

  • VMWare Fusion 6
  • Ubuntu Server 12.04

仮想化環境にしたのは後片付けだとか色々と便利なので。
当然、VMWare FusionはVirtual Boxなどで代用可能。

設定

  • 通常通りUbuntu Serverに以下のものをインストール

  • LAMP server

  • PostgreSQL database

  • Tomcat Java Server

  • Ubuntu Serverの設定 ~¥.bashrcに以下のコードを追記

~¥.bashrc
case $TERM in
    linux) LANG=C ;;
    *) LANG=ja_JP.UTF-8
esac
  • postgresql.conf の設定
/usr/local/pqsql/data/postgresql.conf
# コメントアウトを解除して設定
listen_addresses = ‘*’
# ポートを変更する場合はここの値を変更する。
port=5432
  • pg_hba.confの設定
/usr/local/pgsql/data/pg_hba.conf
# 詳しい設定はコメント内参照。ネットマスクを利用した制限も可能
host all all 192.168.1.0/24 trust 

まとめ

環境をつくることに成功した。
実運用環境を作るとなるとまた違った設定をしなければいけないけど、(特にpg_hba.conf)
とりあえず開発環境を作ることができたので、これからFuelPHPやJSPあたりを触っていきたい。
開発していく上で不都合が起きるかもしれないけどその都度対応ということで。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?