Galaxy Kirin Server Operating System V10SP3 Installation and Deployment File Browser Simple Network Disk

Preface

File Browser is a file manager developed in Golang. It is cross-platform, free and open source, and has powerful functions. Files on the server can be managed through a browser. You can add, delete and modify files. In addition to basic file management, you can also play some video formats online and share files. It can be used as a simple network disk.

System environment

1. Server system configuration
OS version: Galaxy Kirin Server Operating System V10SP3-2212 (x86_64)
File Browser download address: File Browser v2.23.0
Note: Currently File Browser v2.23.0 supports x86_64 and aarch64 architecture platforms.

Building steps

Download and unzip the installation package

[root@localhost ~]# wget https://github.com/filebrowser/filebrowser/releases/download/v2.23.0/linux-amd64-filebrowser.tar.gz
[root@localhost ~]# tar -zxvf linux-amd64-filebrowser.tar.gz

Insert image description here

Add executor

[root@localhost ~]# mv filebrowser /usr/sbin/

Create configuration file

[root@localhost ~]# mkdir /etc/filebrowser/
[root@localhost ~]# vim /etc/filebrowser/config.json

The content of the configuration file is as follows:
Insert image description here
Configuration parameter meaning
address: listening address
database: database file address
log: log file path
port: listening port
root: network disk root directory
username: network disk login name

Run File Browser

[root@localhost ~]# nohup filebrowser -c /etc/filebrowser/config.json &

Insert image description here

System firewall configuration

[root@localhost ~]# firewall-cmd --zone=public --add-port=8089/tcp --permanent
[root@localhost ~]# firewall-cmd --reload

Insert image description here

Using File Browser

Access File Browser

Enter http://IP:8089 in the address bar of the web browser to access the File Browser login interface. The default login username and password are both admin. You can change the password yourself after logging in.
Insert image description here

Change language to Chinese

After logging in, the default display is English. You can change it to "Chinese (Simplified)" in Settings -> Profile Settings -> Language, and then click the "UPDATE" button to save the settings.
Insert image description here
Insert image description here

Reference link: File Browser official website

Guess you like

Origin blog.csdn.net/ShenSeKyun/article/details/129863478