dcm4chee(freeのPACS server software)のinstallの記録

  • システム環境設定、共有でweb共有にチェックを入れる
  • OS X system diskからXcodeTools.mpkgをインストール

-

  • Install MySQL
  • Install JBoss Application Server
  • Install dcm4chee (www.dcm4che.org)
    • download dcm4chee-mysql-2.14.5.zip
    • unzip, rename the folder to dcm4chee and move it to Application folder
    • open terminal and type:
      • cd /Applications/dcm4chee/bin/
      • ./install_jboss.sh /Applications/jboss-4.2.2.GA
    • システム環境設定でMySQLをみると既に起動していた
    • initiate the archive database instance. Open the terminal and type (ターミナル)
      • (>) mysql -u root (rootでmysqlを実行)
      • (mysql>) create database db_name; (db_nameはFCRとする。a_userはuchiyamaclinic,a_passwordは?????(任意)とした)
      • (mysql>) grant all on FCR.* to 'uchiyamaclinic'@'localhost' identified by 'a_password';
      • (mysql>) flush privileges;
      • (mysql>) \q (quit mysql)
      • (>) mysql -uuchiyamaclinic -p FCR < /Applications/dcm4chee/sql/create.mysql
    • Adjust the Database connection configuration wit CotEditor
      • open /Applications/dcm4chee/server/default/deploy/pacs-mysql-ds.xml with coteditor
      • db_name  FCR
      • a_user uchiyamaclinic
      • a_password ?????(任意)
    • 以下をeditorで.bash_profileに追記
      • JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home/
    • #8 ここの記載よくわからない
      • 追記 8/19/2009 括弧の中の行を.bash_profileに記載してみた。
    • editorで /Applications/dcm4chee/server/default/conf/xmdesc/dcm4chee-wadoxmbean.xmlを開いて記載の通り変更
    • #10 ここの記載よくわからない
  • Starting dcm4chee (ターミナル)
    • cd /Applications/dcm4chee/bin
    • ./run.sh
  • このあとsafarihttp://localhost:8080/dcm4chee-web/を開くと無事起動した。
  • これでPACS serverが準備できた。
  • FCRとの接続設定が、PACS/DICOMの基礎知識がないので、簡単ではなさそう。
  • 追記 2012/12の時点での情報はここ