Building an image server with FastDFS under Linux

Building an image server with FastDFS under Linux

Server Planning

Server Name IP address and port Remark
fastdfs-tracker * :22122 Tracking Server/Scheduling Server
fastdfs-storage * :23000 Storage Server

1. Install system components

yum install gcc -y 

2. Install fastdfs

1. Create a storage directory for the image server

mkdir -p /data/image

2. Download the FastDFS dependency package libfastcommon and install it

wget https://codeload.github.com/happyfish100/libfastcommon/zip/master

Unzip

unzip master

Install

cd libfastcommon-master/ && ./make.sh && ./make.sh install

3. Download and install FastDFS

Click to download

Unzip:

tar xf FastDFS_v5.08.tar.gz

Install

cd FastDFS && ./make.sh && ./make.sh install

3. Configure the image server file

1. Configure the tracking server tracker

cp /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf

vim /etc/fdfs/tracker.conf Modify base_path to the service directory created above

2. Configure client.conf

cp /etc/fdfs/client.conf.sample /etc/fdfs/client.conf

vim /etc/fdfs/client.conf Modify base_path to the service directory created above and tracker_server service IP to the local machine

3. Test and start the tracker server

If the startup is successful, new data and logs directories will be created automatically in the /data/file/fastdfs/tracker directory

/etc/init.d/fdfs_trackerd start
/etc/init.d/fdfs_trackerd stop 

4. Configure storage server

cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf

vim /etc/fdfs/storage.conf Modify base_path to the service directory created above, tracker_server service IP to the local machine, base_path to the service directory created above

5. Start the tracker server

/etc/init.d/fdfs_storaged start
/etc/init.d/fdfs_storaged stop 

View Ports

6. File upload test

/usr/bin/fdfs_upload_file /etc/fdfs/client.conf /root/docker.jpg 

Summarize

This is the end of this article about building an image server with FastDFS under Linux. For more related Linux FastDFS content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation steps for building FastDFS file server in Linux

<<:  A brief discussion on two methods to solve space-evenly compatibility issues

>>:  Detailed explanation of the principles of Vue's responsive system

Recommend

How to install JDK and Mysql on Ubuntu 18.04 Linux system

Platform deployment 1. Install JDK step1. Downloa...

Detailed explanation of the lock structure in MySQL

Mysql supports 3 types of lock structures Table-l...

A brief talk on responsive design

1. What is responsive design? Responsive design i...

Detailed steps for installing and debugging MySQL database on CentOS7 [Example]

This example requires downloading and installing ...

Detailed explanation and extension of ref and reactive in Vue3

Table of contents 1. Ref and reactive 1. reactive...

How to find identical files in Linux

As the computer is used, a lot of garbage will be...

How to install golang under linux

Go is an open source programming language that ma...

Solution to VMware virtual machine no network

Table of contents 1. Problem Description 2. Probl...

Solve the mobile terminal jump problem (CSS transition, target pseudo-class)

Preface Many friends who have just come into cont...

Detailed installation and configuration of hadoop2.7.2 under ubuntu15.10

There are many Hadoop installation tutorials on L...

JS implements a simple todoList (notepad) effect

The notepad program is implemented using the thre...

How to generate Vue user interface by dragging and dropping

Table of contents Preface 1. Technical Principle ...

HTML uncommon tags optgroup, sub, sup and bdo example code

Optgroup is used in the select tag to make the dro...

Not all pop-ups are rogue. Tips on designing website pop-ups

Pop-up news is common in domestic Internet servic...

Let's talk about the size and length limits of various objects in MySQL

Table of contents Identifier length limit Length ...