centos中安装fastdfs

来源:互联网 发布:买了一辆豪车后 知乎 编辑:程序博客网 时间:2024/06/05 15:44
参考文献:http://dorole.com/tag/fastdfs/安装编译环境[html] view plain copyyum -y groupinstall 'Development Tools'   yum -y install wget   下载安装libfastcommon[html] view plain copygit clone https://github.com/happyfish100/libfastcommon.git  cd libfastcommon/  ./make.sh   ./make.sh install  下载安装fastdfs[html] view plain copyhttps://github.com/happyfish100/fastdfs/archive/V5.05.tar.gz  tar -zxvf V5.05.tar.gz   cd fastdfs-5.05/  ./make.sh  ./make.sh install  修改配置文件创建目录,存储日志和数据,如下[html] view plain copy-data      -fdfs          -tracker          -storage          -client  配置tracker[html] view plain copycd /etc/fdfs  mv tracker.conf.sample tracker.conf  vi tracker.conf  //...  base_path=/data/fdfs/tracker  //...  配置storage[html] view plain copycd /etc/fdfs  mv storage.conf.sample storage.conf  vi storage.conf  //...  base_path=/data/fdfs/storage #指定日志位置  store_path0=/data/fdfs/storage #指定数据位置  tracker_server=192.168.153.130:22122  #指定tracker服务器地址  //...  配置client[html] view plain copycd /etc/fdfs  mv client.conf.sample client.conf  vi client.conf  //...  base_path=/data/fdfs/client  tracker_server=192.168.153.130:22122  //...  启动tracker和storage[html] view plain copy/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf   /usr/bin/fdfs_storaged /etc/fdfs/storage.conf   可通过日志查看是否启动成功[html] view plain copytail -f /data/fdfs/storage/logs/storaged.log   tail -f /data/fdfs/tracker/logs/trackerd.log   测试利用dfds自带的测试类进行测试[html] view plain copy#上传  /usr/bin/fdfs_test /etc/fdfs/client.conf  upload /home/lily/a.txt  #下载  /usr/bin/fdfs_download_file  /etc/fdfs/client.conf group1/M00/00/00/wKiZglauvkmANC2wAAAAPpWmuhI171.txt  #删除  /usr/bin/fdfs_delete_file  /etc/fdfs/client.conf group1/M00/00/00/wKiZglauvkmANC2wAAAAPpWmuhI171.txt