docs:mac:builds:mediatomb

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docs:mac:builds:mediatomb [2008/08/03 01:15] – created billhdocs:mac:builds:mediatomb [2008/09/07 00:27] (current) billh
Line 1: Line 1:
 ====== mediatomb ====== ====== mediatomb ======
   * download source from http://mediatomb.cc/   * download source from http://mediatomb.cc/
-  * first install [[mysql]], and make sure to build with **%%--enable-thread-safe-client%%**+  * install [[mysql]], and make sure to build with **%%--enable-thread-safe-client%%** 
 +  * install [[spidermonkey]], and make sure to copy header file into js/src
   * build mediatomb<code>   * build mediatomb<code>
 ./configure \ ./configure \
Line 8: Line 9:
 --infodir=/usr/local/info \ --infodir=/usr/local/info \
 --enable-mysql \ --enable-mysql \
---with-mysql=/usr/local/mysql+--with-mysql=/usr/local/mysql 
 +--enable-libjs \ 
 +--with-js-h=/Users/billh/builds/js/src
  
 make make
Line 24: Line 27:
 ... ...
     <storage>     <storage>
- <!-- + 
-      <sqlite3 enabled="yes">+      <!-- <sqlite3 enabled="yes">
         <database-file>mediatomb.db</database-file>         <database-file>mediatomb.db</database-file>
-      </sqlite3> +      </sqlite3> --> 
-   -->+
  <mysql enabled="yes">  <mysql enabled="yes">
  <host>localhost</host>  <host>localhost</host>
Line 71: Line 74:
 </code> </code>
   * start mediatomb again - db tables will be created in mysql   * start mediatomb again - db tables will be created in mysql
-  * add any files you want to share in the UI (%%http://<host>:49152/%%) +  * add any files you want to share in the web based UI at %%http://<host>:49152/%% 
-  * shut down mediatomb and disable the UI so everyone won't have access to see every file on your host<code>+ 
 +===== Permanent Configuration ===== 
 +After completing the above steps, do the following to have mediatomb run securely on startup: 
 +  * shut down mediatomb 
 +  * edit config.xml 
 +    * disable the UI so everyone won't have access to see every file on your host<code>
   <server>   <server>
     <ui enabled="no">     <ui enabled="no">
 </code> </code>
-  * :?: Note: may also build with libjs, libmagic, id3lib, taglib in the future+    * remove the <home> reference line<code> 
 +<!-- delete or comment out this line entirely --> 
 +<home>/your/home/dir/.mediatomb</home> 
 +</code> 
 +  * move the .mediatomb directory out of your home folder to /usr/local/mediatomb (no dot) 
 +  * change the permissions to nobody<code> 
 +sudo chown -R nobody:nobody /usr/local/mediatomb 
 +</code> 
 +  * create a Mac StartupItem, using the following<code bash> 
 +#!/bin/sh 
 + 
 +## 
 +# Configure MediaTomb Server 
 +## 
 + 
 +. /etc/rc.common 
 + 
 +StartService () 
 +
 +    if [ "${MEDIATOMB:=-NO-}" = "-YES-" ]; then 
 + ConsoleMessage "Starting MediaTomb Server" 
 + now=`date +%s` 
 + let "limit = $now + 60" 
 + 
 + /usr/local/mysql/bin/mysqladmin -s -u root --password=rootpass status > /dev/null 
 + while [ $? -ne 0 ] && [ $now -lt $limit ] 
 + do 
 + let "now = `date +%s`" 
 + if [ $now -ge $limit ]; then 
 + ConsoleMessage "MediaTomb could not be started because MySQL was not running after the timeout limit" 
 + exit 1 
 + fi 
 + 
 + /usr/local/mysql/bin/mysqladmin -s -u root --password=rootpass status > /dev/null 
 + done 
 + 
 + sudo -u nobody /usr/local/bin/mediatomb --daemon --home /usr/local --cfgdir mediatomb --logfile /usr/local/var/mediatomb.log 
 + fi 
 + 
 +
 + 
 +StopService () 
 +
 + ConsoleMessage "Stopping MediaTomb Server" 
 + sudo killall -15 mediatomb 
 +
 + 
 +RestartService () 
 +
 +    if [ "${MEDIATOMB:=-NO-}" = "-YES-" ]; then 
 + ConsoleMessage "Restarting MediaTomb Server" 
 + sudo killall -1 mediatomb 
 +    else 
 +        StopService 
 +    fi 
 + 
 +
 + 
 +RunService "$1" 
 +</code> 
 + 
 +===== Future Development ===== 
 +  * :?: Note: may also build with libjs, libmagic, id3lib, taglib
  • docs/mac/builds/mediatomb.1217747720.txt.gz
  • Last modified: 2008/08/03 01:15
  • by billh