How to use FTP Client to connect on CentOs VPS?

Maxwell

New member
Joined
Mar 5, 2013
Messages
397
Points
0
Hi everyone,

This is the first time, i have ever used a VPS thus I have difficulty in using FTP program to connect to Centos on VPS. It didn't allow me do that. Are there any ways to use FTP Client to connect on CentOs VPS?

please suggest me
 

yestyle

New member
Joined
Jul 1, 2012
Messages
188
Points
0
To run FTP program on a VPS you need to install VsFTP
Code:
sudo yum install vsftpd
Install FTP client to connect to FTP server with command
Code:
sudo yum install ftp
Using nano to open vsftp
Code:
sudo nano /etc/vsftpd/vsftpd.conf
You will need to set permissions for somethings here

Restart service
Code:
sudo service vsftpd restart
Always turn on when starting vps
Code:
chkconfig vsftpd on
Creating a user for FTP client
Code:
useradd testftp
Set password for user
Code:
passwd testftp
Prompt you for new password
Changing password for user user.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
All done. Now you can use ftp programs to connect to vps using ssh and port 22.

Good luck!
 
Older threads
Replies
2
Views
3,518
Replies
2
Views
3,436
Replies
6
Views
4,646
Replies
18
Views
8,796
Replies
5
Views
4,109
Newer threads
Replies
13
Views
5,951
Replies
2
Views
3,690
Replies
3
Views
5,866
Recommended threads
Replies
5
Views
20,484
Replies
6
Views
3,000
Replies
5
Views
3,750
Replies
9
Views
4,564
Replies
0
Views
2,904
Top