进入刚刚指定的base_path(/home/lyy/fastdfs)中有个logs目录,查看tracker.log文件
7、查看端口情况
netstat -apn|grep fdfs
如果22122端口正在被监听,则Tracker服务安装成功,如下图所示:
Tracker 关闭命令:service fdfs_trackerd stop
8、设置Tracker开机启动
chkconfig fdfs_trackerd on
或者:
vi /etc/rc.d/rc.local
加入配置:
/etc/init.d/fdfs_trackerd start
2.5 配置Storage服务
1、进入/etc/fdfs目录,有cp命令拷贝storage.conf.sample,重命名为 storage.conf(删除.sample)后缀作为正式文件
cd /etc/fdfs/
cp storage.conf.sample storage.conf
vi storage.conf
2、编辑storage.conf,修改相关参数(base_path、store_path0、tracker_server、http.server_port)
配置文件是否不生效,false 为生效
disabled=false
指定此 storage server 所在 组(卷)
group_name=group1
storage server 服务端口,storge默认23000
port=23000
心跳间隔时间,单位为秒 (这里是指主动向 tracker server 发送心跳)
heart_beat_interval=30
存储路径个数,需要和store_path个数匹配
store_path_count=1
storage存储data和log的跟路径,必须提前创建好
base_path=/home/lyy/storage/fastdfs
如果为空,则使用base_path
store_path0=/home/lyy/storage/file
#如果本参数只为 N(如: 256),那么 storage server 在初次运行时,会在 store_path 下自动创建 N * N 个存放文件的子目录
subdir_count_per_path=256
配置该storage监听的tracker的ip和port
#有多个 tracker server 时,每个 tracker server 写一行
tracker_server=192.168.50.198:22122
允许系统同步的时间段 (默认是全天) 。一般用于避免高峰同步产生一些问题而设定。
sync_start_time=00:00
sync_end_time=23:59
#访问端口
http.server_port=80
3、创建Storage基础数据目录,对应base_path目录
mkdir -p /home/lyy/storage/fastdfs
这是配置的store_path0路径
mkdir -p /home/lyy/storage/file
4、启动 Storage
可以用这种方式启动