You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2012/11/02 11:45:38 UTC

svn commit: r1404916 - /trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext

Author: igalic
Date: Fri Nov  2 10:45:38 2012
New Revision: 1404916

URL: http://svn.apache.org/viewvc?rev=1404916&view=rev
Log:
RAW disk support for FreeBSD

Modified:
    trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext

Modified: trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext?rev=1404916&r1=1404915&r2=1404916&view=diff
==============================================================================
--- trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext (original)
+++ trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext Fri Nov  2 10:45:38 2012
@@ -87,3 +87,22 @@ targeted for an Ubuntu system, and store
     # make the assignment final, no later changes allowed to the group!
     SUBSYSTEM=="block", KERNEL=="sd[ef]", GROUP:="www"
 
+## FreeBSD Example ## {#LinuxExample}
+
+Starting with 5.1 FreeBSD dropped support for explicit raw devices. All devices
+on FreeBSD can be accessed raw now.
+
+The following example will use an entire raw disk in the FreeBSD operating system:
+
+    :::text
+    /dev/ada1
+    /dev/ada2
+
+In order to make sure `traffic_server` will have access to this disk you can
+use `devfs` to persistently set the right permissions. The following rules are
+stored in `/etc/devfs.conf`:
+
+    :::text
+    # Assign /dev/ada1 and /dev/ada2 to the tserver user
+    own    ada[12]  tserver:tserver
+