Am 01.10.2014 um 08:51 schrieb Neddy, NH. Nam:
> I'd like to use ATS 5.0.1 with raw disk cache but having trouble on
> Linux. My box is Debian 7 x64, /dev/sdb is inserted in storage.config
> and change its owner:
>
> # chown -R proxy /dev/sdb
>
> But every time when ATS is started, disk owner changed back to root
> and ATS didn't have access to disk
you need to tell that udev
it's in the docs too
https://docs.trafficserver.apache.org/en/4.0.x/reference/configuration/storage.config.en.html
[root@proxy:~]$ cat /etc/udev/rules.d/50-ats.rules
# /etc/udev/rules.d/50-ats.rules
# Apache Traffic Server owns disk for RAW access
KERNEL=="sdb", OWNER="proxy"
|