Liunx上的服务操作
1-1)、关闭防火墙
在机器上关闭防火墙
[root@hadoop1 /]# service iptables stop
开启开机自关
[root@hadoop1 /]# chkconfig iptables off
1-2)、关闭MySql服务
[root@hadoop1 ~]# service mysqld stop
[root@hadoop1 ~]# chkconfig mysqld off
1-3)、重启网络服务
[root@localhost local]# service network restart
1-4)、开启httpd服务
[root@localhost ~]# service httpd restat
Usage: httpd {start|stop|restart|condrestart|try-restart|force-reload|reload|status|fullstatus|graceful|help|configtest}
1-5)、关闭Transparent Huge Pages(THP)
查看状态
[root@hdoop1 ~]# cat /sys/kernel/mm/transparent_hugepage/defrag
[always] madvise never
说明是开启的
[root@hdoop1 ~]# vim /etc/rc.d/rc.local
if test -f /sys/kernel/mm/transparent_hugepage/enabled; then
echo never > /sys/kernel/mm/transparent_hugepage/enabled
fi
if test -f /sys/kernel/mm/transparent_hugepage/defrag; then
echo never > /sys/kernel/mm/transparent_hugepage/defrag
fi
付给权限
[root@hdoop1 ~]# chmod x /etc/rc.d/rc.local
重启机器再次查看THP信息
[root@hdoop1 ~]#cat /sys/kernel/mm/transparent_hugepage/enabled
always madvise [never]
说明是关闭的
LInux 检测磁盘的性能
$ sudo time dd if=/dev/sda1 of=txt bs=1M count=1024
记录了1024 0 的读入
记录了1024 0 的写出
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 8.46182 s, 127 MB/s
0.00user 0.90system 0:08.57elapsed 10%CPU (0avgtext 0avgdata 3184maxresident)k
49208inputs 2097152outputs (0major 344minor)pagefaults 0swaps
记录了1024 0 的读入:表示读入了多少数据
记录了1024 0 的写出:表示写出了说少数据
127 MB/s:表示写入1024M的数据的速度