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 2011/06/06 03:03:31 UTC

svn commit: r1132510 - /trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext

Author: igalic
Date: Mon Jun  6 01:03:30 2011
New Revision: 1132510

URL: http://svn.apache.org/viewvc?rev=1132510&view=rev
Log:
Explain how to create persistent Udev rules on Linux to correctly assign raw devices to traffic server's group

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

Modified: trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext?rev=1132510&r1=1132509&r2=1132510&view=diff
==============================================================================
--- trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext (original)
+++ trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/storage.config.en.mdtext Mon Jun  6 01:03:30 2011
@@ -75,5 +75,15 @@ partition is used.
 The following example will use an entire raw disk in the Linux operating system:
 
     :::text
-    /dev/sdb
+    /dev/sde
+    /dev/sdf
+
+In order to make sure `traffic_server` will have access to this disk you can
+use `udev` to persisently set the right permissions. The following rules are
+targeted for an Ubuntu system, and stored in `/etc/udev/rules.d/51-cache-disk.rules`:
+
+    :::text
+    # Assign /dev/sde and /dev/sdf to the www group
+    # make the assignment final, no later changes allowed to the group!
+    SUBSYSTEM=="block", KERNEL=="sd[ef]", GROUP:="www"