「Django 運用環境の構築」の版間の差分
ナビゲーションに移動
検索に移動
1行目: | 1行目: | ||
− | ==Django 運用環境の構築== | + | ==[[Django 運用環境の構築]]== |
[[Django]] | [[Python]] | | [[Django]] | [[Python]] | | ||
7行目: | 7行目: | ||
=====注意点===== | =====注意点===== | ||
− | # | + | #[[Python]]のバージョンにより mod_python をソースからコンパイルする |
#httpd_devel をインストールしないと、mod_python がコンパイルできない | #httpd_devel をインストールしないと、mod_python がコンパイルできない | ||
− | # | + | #[[PostgreSQL]]の共有ライブラリを /usr/lib 等にコピーして利用できるようにしておく必要あり |
===インストール=== | ===インストール=== | ||
====mod_python のインストール==== | ====mod_python のインストール==== | ||
− | ===== | + | =====Apache、[[Python]] は以下のバージョン(うまくいかなければ改めてソースから・・・)===== |
*mod_python 3.2.8-3.1 | *mod_python 3.2.8-3.1 | ||
*httpd-2.2.3-5 | *httpd-2.2.3-5 | ||
*python 2.6.2 r262 | *python 2.6.2 r262 | ||
− | <blockquote> | + | <blockquote>[[Python]]を 2.4 から 2.6にしていたため、yumで取得したバイナリとは [[Python]]のバージョンが異なり失敗。以下、ソースからコンパイルを行う。2.4 なら問題ない。</blockquote> |
# yum install mod_python | # yum install mod_python | ||
24行目: | 24行目: | ||
Setting up Install Process | Setting up Install Process | ||
Setting up repositories | Setting up repositories | ||
− | + | [[R]]eading repository metadata in from local files | |
Parsing package install arguments | Parsing package install arguments | ||
− | + | Resol[[vi]]ng Dependencies | |
--> Populating transaction set with selected packages. Please wait. | --> Populating transaction set with selected packages. Please wait. | ||
---> Downloading header for mod_python to pack into transaction set. | ---> Downloading header for mod_python to pack into transaction set. | ||
mod_python-3.2.8-3.1.i386 100% |=========================| 26 kB 00:00 | mod_python-3.2.8-3.1.i386 100% |=========================| 26 kB 00:00 | ||
---> Package mod_python.i386 0:3.2.8-3.1 set to be updated | ---> Package mod_python.i386 0:3.2.8-3.1 set to be updated | ||
− | --> | + | --> [[R]]unning transaction check |
− | Dependencies | + | Dependencies [[R]]esolved |
============================================================================= | ============================================================================= | ||
− | Package Arch Version | + | Package Arch Version [[R]]epository Size |
============================================================================= | ============================================================================= | ||
Installing: | Installing: | ||
45行目: | 45行目: | ||
Install 1 Package(s) | Install 1 Package(s) | ||
Update 0 Package(s) | Update 0 Package(s) | ||
− | + | [[R]]emove 0 Package(s) | |
Total download size: 257 k | Total download size: 257 k | ||
51行目: | 51行目: | ||
Downloading Packages: | Downloading Packages: | ||
(1/1): mod_python-3.2.8-3 100% |=========================| 257 kB 00:00 | (1/1): mod_python-3.2.8-3 100% |=========================| 257 kB 00:00 | ||
− | + | [[R]]unning Transaction Test | |
Finished Transaction Test | Finished Transaction Test | ||
Transaction Test Succeeded | Transaction Test Succeeded | ||
− | + | [[R]]unning Transaction | |
Installing: mod_python ######################### [1/1] | Installing: mod_python ######################### [1/1] | ||
60行目: | 60行目: | ||
Complete! | Complete! | ||
− | ====Windows 用に以下のサイトでバイナリが配布されている==== | + | ====[[Windows]] 用に以下のサイトでバイナリが配布されている==== |
*http://ftp.riken.jp/net/apache/httpd/modpython/win/3.3.1/ | *http://ftp.riken.jp/net/apache/httpd/modpython/win/3.3.1/ | ||
− | <blockquote> | + | <blockquote>[[Python]]2.6 用は提供されていない模様 2010/01/21時点</blockquote> |
===ソースからインストール=== | ===ソースからインストール=== | ||
*http://httpd.apache.org/modules/python-download.cgi | *http://httpd.apache.org/modules/python-download.cgi | ||
95行目: | 95行目: | ||
====コンパイル==== | ====コンパイル==== | ||
=====configure===== | =====configure===== | ||
− | *apxs および | + | *apxs および [[Python]]のバージョンも正しく検知されたっぽい |
# ./configure --with-apxs=/usr/sbin/apxs | # ./configure --with-apxs=/usr/sbin/apxs | ||
: | : | ||
102行目: | 102行目: | ||
checking for --with-python... no | checking for --with-python... no | ||
checking for python... /usr/local/bin/python | checking for python... /usr/local/bin/python | ||
− | checking Python version... 2.6 | + | checking [[Python]] version... 2.6 |
− | checking Python install prefix... /usr/local | + | checking [[Python]] install prefix... /usr/local |
checking checking where python libraries are installed... /usr/local/lib/python2.6 | checking checking where python libraries are installed... /usr/local/lib/python2.6 | ||
config.status: creating dist/Makefile | config.status: creating dist/Makefile | ||
142行目: | 142行目: | ||
<Directory "/var/www/html/pytest"> | <Directory "/var/www/html/pytest"> | ||
AddHandler mod_python .py | AddHandler mod_python .py | ||
− | + | [[Python]]Handler mptest | |
− | + | [[Python]]Debug On | |
</Directory> | </Directory> | ||
149行目: | 149行目: | ||
− | =====Apache を再起動し、mptest.pyにアクセス===== | + | =====[[Apache]] を再起動し、mptest.pyにアクセス===== |
*再起動 | *再起動 | ||
− | # /sbin/ | + | # /sbin/ser[[vi]]ce httpd restart |
httpd を停止中: [ OK ] | httpd を停止中: [ OK ] | ||
httpd を起動中: [ OK ] | httpd を起動中: [ OK ] | ||
157行目: | 157行目: | ||
*http://192.168.24.14/pytest/mptest.py | *http://192.168.24.14/pytest/mptest.py | ||
[[File:0347_mod_py01.jpg]] | [[File:0347_mod_py01.jpg]] | ||
− | ===Django の設定=== | + | ===[[Django]] の設定=== |
====httpd.confの編集==== | ====httpd.confの編集==== | ||
*http://michilu.com/django/doc-ja/modpython/ | *http://michilu.com/django/doc-ja/modpython/ | ||
166行目: | 166行目: | ||
<Location "/py/mysite"> | <Location "/py/mysite"> | ||
SetHandler python-program | SetHandler python-program | ||
− | + | [[Python]]Handler django.core.handlers.modpython | |
SetEnv DJANGO_SETTINGS_MODULE mysite.settings | SetEnv DJANGO_SETTINGS_MODULE mysite.settings | ||
PythonPath "sys.path+['/var/www/html/py']" | PythonPath "sys.path+['/var/www/html/py']" | ||
− | + | [[Python]]Debug On | |
</Location> | </Location> | ||
177行目: | 177行目: | ||
=====以下のエラー===== | =====以下のエラー===== | ||
<blockquote>yum でバイナリをインストールしたため、以下のエラー。ソースコードから再インストールを行う。</blockquote> | <blockquote>yum でバイナリをインストールしたため、以下のエラー。ソースコードから再インストールを行う。</blockquote> | ||
− | *現在の環境は、もともとPython2.4 がデフォルトで入っていたところに、[Django インストール | + | *現在の環境は、もともとPython2.4 がデフォルトで入っていたところに、[[Django インストール|2.6を入れいている]]が、mod_python 自体もバイナリは Python2.4 でコンパイルされている? |
− | Mod_python error: " | + | Mod_python error: "[[Python]]Handler django.core.handlers.modpython" |
Traceback (most recent call last): | Traceback (most recent call last): | ||
193行目: | 193行目: | ||
# yum erase mod_python | # yum erase mod_python | ||
: | : | ||
− | + | [[R]]unning Transaction | |
Removing : mod_python ######################### [1/1] | Removing : mod_python ######################### [1/1] | ||
− | + | [[R]]emoved: mod_python.i386 0:3.2.8-3.1 | |
Complete! | Complete! | ||
− | ====[Django 最初のアプリケーション 1] | + | ====[[Django 最初のアプリケーション 1|チュートリアルで作成したアプリケーション]]を呼び出してみる。==== |
*http://192.168.24.14/py/mysite/polls/ | *http://192.168.24.14/py/mysite/polls/ | ||
=====エラー===== | =====エラー===== | ||
ImproperlyConfigured: Error loading psycopg2 module: libpq.so.5: cannot open shared object file: No such file or directory | ImproperlyConfigured: Error loading psycopg2 module: libpq.so.5: cannot open shared object file: No such file or directory | ||
− | *[http://wiki.minaco.net/index.php?cmd=read&page=Python%2FDjango%2F%E3%83%81%E3%83%A5%E3%83%BC%E3%83%88%E3%83%AA%E3%82%A2%E3%83%AB | + | *[[PostgreSQL 8.3.5 インストール|バックエンドに設定]]した、[PostgreSQLのライブラリを認識していないようだ|http://wiki.minaco.net/index.php?cmd=read&page=Python%2FDjango%2F%E3%83%81%E3%83%A5%E3%83%BC%E3%83%88%E3%83%AA%E3%82%A2%E3%83%AB] |
# cp /usr/local/pgsql/lib/libpq.so.5 /usr/lib | # cp /usr/local/pgsql/lib/libpq.so.5 /usr/lib | ||
212行目: | 212行目: | ||
=====mysite.urls.py===== | =====mysite.urls.py===== | ||
urlpatterns = patterns('', | urlpatterns = patterns('', | ||
− | (r'^py/mysite/firsttest/$', 'mysite.firsttest. | + | (r'^py/mysite/firsttest/$', 'mysite.firsttest.[[vi]]ews.index'), |
) | ) | ||
− | =====mysite.firsttest. | + | =====mysite.firsttest.[[vi]]ews.py===== |
# -*- encoding: utf-8 -*- | # -*- encoding: utf-8 -*- | ||
− | from django.http import | + | from django.http import Http[[R]]esponse |
def index(request): | def index(request): | ||
− | return HttpResponse('Hello Django!') | + | return HttpResponse('Hello [[Django]]!') |
=====OK===== | =====OK===== | ||
[[File:0348_mod_py02.jpg]] | [[File:0348_mod_py02.jpg]] |
2020年2月16日 (日) 04:24時点における最新版
Django 運用環境の構築
注意点
- Pythonのバージョンにより mod_python をソースからコンパイルする
- httpd_devel をインストールしないと、mod_python がコンパイルできない
- PostgreSQLの共有ライブラリを /usr/lib 等にコピーして利用できるようにしておく必要あり
インストール
mod_python のインストール
Apache、Python は以下のバージョン(うまくいかなければ改めてソースから・・・)
- mod_python 3.2.8-3.1
- httpd-2.2.3-5
- python 2.6.2 r262
<blockquote>Pythonを 2.4 から 2.6にしていたため、yumで取得したバイナリとは Pythonのバージョンが異なり失敗。以下、ソースからコンパイルを行う。2.4 なら問題ない。</blockquote>
- # yum install mod_python
- Loading "installonlyn" plugin
- Setting up Install Process
- Setting up repositories
- Reading repository metadata in from local files
- Parsing package install arguments
- Resolving Dependencies
- --> Populating transaction set with selected packages. Please wait.
- ---> Downloading header for mod_python to pack into transaction set.
- mod_python-3.2.8-3.1.i386 100% |=========================| 26 kB 00:00
- ---> Package mod_python.i386 0:3.2.8-3.1 set to be updated
- --> Running transaction check
- Dependencies Resolved
- =============================================================================
- Package Arch Version Repository Size
- =============================================================================
- Installing:
- mod_python i386 3.2.8-3.1 core 257 k
- Transaction Summary
- =============================================================================
- Install 1 Package(s)
- Update 0 Package(s)
- Remove 0 Package(s)
- Total download size: 257 k
- Is this ok [y/N]: y
- Downloading Packages:
- (1/1): mod_python-3.2.8-3 100% |=========================| 257 kB 00:00
- Running Transaction Test
- Finished Transaction Test
- Transaction Test Succeeded
- Running Transaction
- Installing: mod_python ######################### [1/1]
- Installed: mod_python.i386 0:3.2.8-3.1
- Complete!
Windows 用に以下のサイトでバイナリが配布されている
<blockquote>Python2.6 用は提供されていない模様 2010/01/21時点</blockquote>
ソースからインストール
ソースのダウンロード
解凍
- # tar xvf mod_python-3.3.1.tgz
- mod_python-3.3.1/
- mod_python-3.3.1/test/
- mod_python-3.3.1/test/testconf.py.in
- mod_python-3.3.1/test/httpdconf.py
- :
httpd-devel のインストール
mod_so.c が存在するかを確認
- # httpd -l
- Compiled in modules:
- core.c
- prefork.c
- http_core.c
- mod_so.c
httpd-devel のインストール
- # yum install httpd-devel
- :
- i386 0:2.1.22-4 db4-devel.i386 0:4.3.29-9.fc6 expat-devel.i386 0:1.95.8-8.2.1 openldap-devel.i386 0:2.3.30-3.fc6
- Dependency Updated: httpd.i386 0:2.2.6-1.fc6 openldap.i386 0:2.3.30-3.fc6
- Complete!
apxs がどこにインストールされたかな
- # find / | grep apxs
- /usr/share/man/man8/apxs.8.gz
- /usr/sbin/apxs
コンパイル
configure
- apxs および Pythonのバージョンも正しく検知されたっぽい
- # ./configure --with-apxs=/usr/sbin/apxs
- :
- checking for --with-apxs... /usr/sbin/apxs executable, good
- :
- checking for --with-python... no
- checking for python... /usr/local/bin/python
- checking Python version... 2.6
- checking Python install prefix... /usr/local
- checking checking where python libraries are installed... /usr/local/lib/python2.6
- config.status: creating dist/Makefile
- :
make
- # make
- :
- Compiling for DSO.
- :
- Now su and make install
- (or, if you only want to perform a partial install,
- you can use make install_dso and make install_py_lib)
make install
- #make install
- Performing DSO installation.
- /usr/bin/install -c -d /usr/lib/httpd/modules
- /usr/bin/install -c src/mod_python.so /usr/lib/httpd/modules
- Now don't forget to edit your main config and add
- LoadModule python_module /usr/lib/httpd/modules/mod_python.so
- and if your configuration uses ClearModuleList, then also
- AddModule mod_python.c
- :
テスト
- mod_python が動作しているかテストする
Httpサーバーのドキュメントルート /var/www/html/ に、pytest というフォルダを作成し、mptest.py ファイルを置く
- mptest.py
- from mod_python import apache
- def handler(req):
- req.write("mod_python worked!")
- return apache.OK
/etc/httpd/conf/httpd.conf に以下の記述を追加
- LoadModule python_module /usr/lib/httpd/modules/mod_python.so
Apache を再起動し、mptest.pyにアクセス
- 再起動
- # /sbin/service httpd restart
- httpd を停止中: [ OK ]
- httpd を起動中: [ OK ]
Django の設定
httpd.confの編集
- http://michilu.com/django/doc-ja/modpython/
- http://www.python.jp/doc/contrib/modpython/inst-configure.html
- 以下を追記
- PythonPath ディレクティブでプロジェクトのパスを指定
- ソースコードからコンパイルした場合、以下も忘れずに追記
- LoadModule python_module /usr/lib/httpd/modules/mod_python.so
以下のエラー
<blockquote>yum でバイナリをインストールしたため、以下のエラー。ソースコードから再インストールを行う。</blockquote>
- 現在の環境は、もともとPython2.4 がデフォルトで入っていたところに、2.6を入れいているが、mod_python 自体もバイナリは Python2.4 でコンパイルされている?
- Mod_python error: "PythonHandler django.core.handlers.modpython"
- Traceback (most recent call last):
- File "/usr/lib/python2.4/site-packages/mod_python/apache.py", line 287, in HandlerDispatch
- log=debug)
- File "/usr/lib/python2.4/site-packages/mod_python/apache.py", line 461, in import_module
- f, p, d = imp.find_module(parts[i], path)
- ImportError: No module named django
- いったん削除
チュートリアルで作成したアプリケーションを呼び出してみる。
エラー
- ImproperlyConfigured: Error loading psycopg2 module: libpq.so.5: cannot open shared object file: No such file or directory
- バックエンドに設定した、[PostgreSQLのライブラリを認識していないようだ|http://wiki.minaco.net/index.php?cmd=read&page=Python%2FDjango%2F%E3%83%81%E3%83%A5%E3%83%BC%E3%83%88%E3%83%AA%E3%82%A2%E3%83%AB]
- # cp /usr/local/pgsql/lib/libpq.so.5 /usr/lib
- # ldconfig
テスト
mysite.urls.py
- urlpatterns = patterns(,
- (r'^py/mysite/firsttest/$', 'mysite.firsttest.views.index'),
- )
mysite.firsttest.views.py
OK
© 2006 矢木浩人