头痛的问题

现在Microserver gen8现在已经折腾得差不多了,但还有一个头痛的问题还解决不了:

硬盘读写性能!

写入正常,有170M/s左右,但读取相当慢,只有25M/s左。

硬盘工作在Raid1模式下,特意 …

➟ Read more


Centos7上构建named-chroot服务器

安装

yum -y install bind bind-chroot bind-utils

设置

  • 设置/etc/named.conf
listen-on port 53 {127.0.0.1};

改为

listen-on port 53 {any;};
allow-query {localhost;};

改为

allow-query {any;};

添加

forwad only;
    forwarders{
                223.5.5.5;
                223 …
➟ Read more