2015年8月31日月曜日

NASの自作 Part27

そういえば現在、RAID10で運用しているHDDケース HFR2-SU3S2FW のパフォーマンスを調べてなかったのでベンチマークを測定してみました。

DiskSpeedTestRAID10

RAID10なのでもっと良い結果を予想していたのですが、全然大したことないようです。このレベルのスピードで今まで全く不満なく使っていたので、今回のNASもこの数値を目標にチューニングしていきたいと思います。
まずOMVにインストールされているSambaについて調べます。

# sambaのバージョンを確認
smbd -V
Version 3.6.6
# sambaの設定を確認
cat /etc/samba/smb.conf
#======================= Global Settings =======================
[global]
workgroup = WORKGROUP
server string = %h server
dns proxy = no
log level = 0
syslog = 0
log file = /var/log/samba/log.%m
max log size = 1000
syslog only = yes
panic action = /usr/share/samba/panic-action %d
encrypt passwords = true
passdb backend = tdbsam
obey pam restrictions = yes
unix password sync = no
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
pam password change = yes
socket options = TCP_NODELAY IPTOS_LOWDELAY
guest account = nobody
load printers = no
disable spoolss = yes
printing = bsd
printcap name = /dev/null
unix extensions = yes
wide links = no
create mask = 0777
directory mask = 0777
map to guest = Bad User
use sendfile = yes
aio read size = 16384
aio write size = 16384
null passwords = yes
local master = yes
time server = no
wins support = no

#======================= Share Definitions =======================
[shared]
path = /media/74a33bfa-edae-4b56-92cc-33fa5c44ba82/shared/
guest ok = yes
read only = no
browseable = yes
inherit acls = yes
inherit permissions = no
ea support = no
store dos attributes = no
printable = no
create mask = 0755
force create mode = 0644
directory mask = 0755
force directory mode = 0755
hide dot files = yes
read list =
write list =

Extreme slow samba speedsSambaパラメーターとパフォーマンスSambaが遅いのでパフォーマンスチューニング このへんのサイトを参考に以下の2つのパラメータを追加してみることにします。

max protocol = SMB2
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=87600 SO_RCVBUF=87600

設定は /etc/samba/smb.conf を直接編集するのではなく、Webの管理画面から設定してみます。


AccessMenuBarApps

Saveボタンを押してApplyで設定を反映させましたが、全くパフォーマンスには変化がありませんでした。。。そんなはずはないので再起動して再度測定してみます。


DiskSpeedTestSamba

おぉぉ!!いきなり書込速度が目標を上回りました。読込速度もかなりイイ感じです。Sambaの設定は環境に大きく依存して、最適な設定値は試行錯誤するしかないので、これからいろいろ調整の余地はあるかもしれませんが、頑張ればギガビット・イーサネットの限界である125MB/sを達成することができそうです。

0 件のコメント:

コメントを投稿