View Categories

Tgzインストーラーファイルを使ってMacにP5をインストールする方法

サポートされているすべてのオペレーティングシステム用のP5インストーラパッケージは、P5ダウンロードページ(https://p5.archiware.com/download)にあります。

P5の現在のバージョンは、このページの一番上にあります。古いバージョンのP5については、ページの一番下までスクロールしてください。

ほとんどのお客様は、ダウンロードページにある’awpstXXX-darwin.dmg’を使用してMacにP5をインストールまたはアップデートします。macOS/OS X用のP5インストーラー.dmgは、常にフォルダ’/usr/local/aw/’にP5をインストールします。このインストールパスは固定化されています。

MacにP5をインストールするもう1つの方法は、’awpstXXX-darwin.tgz’インストーラファイルをダウンロードし、P5マニュアルの3.6章「Linux/FreeBSDのインストール」に記載されているLinux/FreeBSDにP5をインストールする手順に従ってインストールすることです。.tgz ファイルを使用すると、P5 を別のパスにインストールできます。

以下は、.tgz インストーラーファイルを使用して Mac に P5 をインストール(またはアップデート)する実際の方法です(必要に応じてファイル名を変更してください):

$ cd /usr/local/aw
$ sudo ./stop-server
$ sudo curl http://p5-downloads.s3.amazonaws.com/awpst602-darwin.tgz -o awpst602-darwin.tgz
$ sudo tar xzvf awpst602-darwin.tgz
$ sudo ./start-server
imac-aw:~ boba$ cd /usr/local/aw/
imac-aw:aw boba$ sudo ./stop-server
Password:

Stopping P5 application server, be patient...

lexxsrv pid: 78126 (stopped).

imac-aw:aw boba$ sudo curl http://p5-downloads.s3.amazonaws.com/awpst602-darwin.tgz -o awpst602-darwin.tgz

% Total % Received % Xferd Average Speed Time Time Time Current

Dload Upload Total Spent Left Speed

100 32.8M 100 32.8M 0 0 11.6M 0 0:00:02 0:00:02 --:--:-- 11.6M

imac-aw:aw boba$ sudo tar xzvf awpst602-darwin.tgz
x ./
x ./binaries/
x ./ChangeLog
x ./etc/
...
x ./binaries/Darwin/x86_64/ibmltfs/libibmdriver-iokit.dylib
x ./binaries/Darwin/x86_64/ibmltfs/libibmiosched-unified.dylib
x ./binaries/Darwin/x86_64/ibmltfs/libibmltfs.dylib
x ./binaries/Darwin/x86_64/ibmltfs/libp5ibmltfs.dylib

imac-aw:aw boba$ sudo ./start-server

Starting P5 application server, be patient...

pid: 81237 (version "6.0.2" running)

url: http://192.168.1.35:8000/login, https://192.168.1.35:8443/login (use web-browser to connect)

Started P5 application server "lexxsrv", pid: 81237

imac-aw:aw boba$
https://support.archiware.com/show/howto-install-p5-on-a-mac-using-the-tgz-installer-file
P5 installer packages for all supported operating systems can be found on the P5 download page: current version of P5 ca...