FastDFS分布式文件系统集群安装与配置(2)

shell> vi /etc/sysconfig/iptables
添加如下端口行:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22122 -j ACCEPT
重启防火墙:
shell> service iptables restart

5> 启动tracker服务器 shell> /etc/init.d/fdfs_trackerd start

初次启动,会在/fastdfs/tracker目录下生成logs、data两个目录:

fastdfs tracker初次启动生成的目录结构

检查FastDFS Tracker Server是否启动成功:ps -ef | grep fdfs_trackerd

6> 停止tracker服务器 shell> /etc/init.d/fdfs_trackerd stop 7> 设置tracker服务开机启动 shell> chkconfig fdfs_trakcerd on 三、配置存储节点

group1: 192.168.1.202,192.168.1.203
group2: 192.168.1.204,192.168.1.205

说明:每个节点执行相同的操作

1> 复制storage样例配置文件,并重命名 shell> cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf 2> 编辑配置文件 shell> vi /etc/fdfs/storage.conf # 修改的内容如下: disabled=false # 启用配置文件 port=23000 # storage服务端口 group_name=group1 # 组名(第一组为group1,第二组为group2,依次类推...) base_path=/fastdfs/storage # 数据和日志文件存储根目录 store_path0=/fastdfs/storage # 第一个存储目录,第二个存储目录起名为:store_path1=xxx,其它存储目录名依次类推... store_path_count=1 # 存储路径个数,需要和store_path个数匹配 tracker_server=192.168.0.200:22122 # tracker服务器IP和端口 tracker_server=192.168.0.201:22122 # tracker服务器IP和端口 http.server_port=8888 # http访问文件的端口

其它参数保留默认配置, 具体配置解释可参考官方文档说明:

3> ���建基础数据目录 shell> mkdir -p /fastdfs/storage 4> 防火墙中打开storage服务器端口( 默认为 23000)

shell> vi /etc/sysconfig/iptables
添加如下端口行:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 23000 -j ACCEPT
重启防火墙:
shell> service iptables restart

5> 启动storage服务器 shell> /etc/init.d/fdfs_storaged start

初次启动,会在/fastdfs/storage目录下生成logs、data两个目录。

storage目录结构

检查FastDFS Tracker Server是否启动成功:
ps -ef | grep fdfs_storaged

各节点启动后,使用tail -f /fastdfs/storage/logs/storaged.log命令监听存储节点的日志,可以看到存储节点链接到跟踪服务器,并提示哪一个为leader跟踪服务器,同时也能看到同一组中其它节点加入进来的日志信息。

所有存储节点都启动之后,可以在任一存储节点上使用如下命令查看集群的状态信息:

shell> /usr/bin/fdfs_monitor /etc/fdfs/storage.conf 6> 停止storage服务器 shell> /etc/init.d/fdfs_storaged stop 7> 设置storage服务开机启动 shell> chkconfig fdfs_storaged on

更多详情见请继续阅读下一页的精彩内容

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/4608950b8249a3dd4dc48dae66ca10d2.html