Skip to content

Commit fdc6dfd

Browse files
authored
Merge pull request #121 from gitplayer4/en/v2
Update ftp.md
2 parents 99f4027 + 500c3ce commit fdc6dfd

File tree

1 file changed

+20
-1
lines changed
  • docs/user_manual/toolbox

1 file changed

+20
-1
lines changed

docs/user_manual/toolbox/ftp.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
## 1 Installation
22

33
=== "RedHat / CentOS"
4+
45
!!! note ""
6+
57
**1. Install EPEL repository**
68

79
```bash
810
yum install -y epel-release
911
```
10-
12+
!!! note ""
13+
1114
**2. Install Pure-FTPd**
1215
1316
```bash
1417
yum -y install pure-ftpd
1518
```
1619

20+
!!! note ""
21+
1722
**3. Modify default configuration**
1823
1924
```bash
@@ -30,26 +35,34 @@
3035
PassivePortRange 39000 40000
3136
```
3237

38+
!!! note ""
39+
3340
**4. Start Pure-FTPd service**
3441
3542
```bash
3643
systemctl start pure-ftpd.service
3744
```
3845
46+
!!! note ""
47+
3948
**5. Check service status**
4049

4150
```bash
4251
systemctl status pure-ftpd.service
4352
```
4453

4554
=== "Ubuntu / Debian"
55+
4656
!!! note ""
57+
4758
**1. Install Pure-FTPd**
4859

4960
```bash
5061
sudo apt-get install pure-ftpd
5162
```
5263

64+
!!! note ""
65+
5366
**2. Modify default configuration**
5467
5568
```bash
@@ -65,18 +78,24 @@
6578
echo '39000 40000' > /etc/pure-ftpd/conf/PassivePortRange
6679
```
6780

81+
!!! note ""
82+
6883
**3. Create database symlink**
6984
7085
```bash
7186
ln -s /etc/pure-ftpd/conf/PureDB /etc/pure-ftpd/auth/50puredb
7287
```
7388

89+
!!! note ""
90+
7491
**4. Start Pure-FTPd service**
7592
7693
```bash
7794
sudo systemctl start pure-ftpd.service
7895
```
7996
97+
!!! note ""
98+
8099
**5. Check service status**
81100

82101
```bash

0 commit comments

Comments
 (0)