hey guys...about 2 days ago i have bought a vps...and my vps is running debian 6.0 x86
can anyone help me please?
thankfull:
kikito
Posts: 544
Threads: 120
Joined: Aug 2010
Reputation:
0
Ummmmm. If you were running cent os. Id be able to tell you lol. Do you have winscp and putty?
i don't have whit...i use the console by vps control panel.....and webmin
Posts: 118
Threads: 7
Joined: Feb 2009
Reputation:
0
In the console:
apt-get update
apt-get install proftpd
The 1st line will update the packages. The 2nd line will install proftpd.
To edit the ftp configuration:
vi /etc/proftpd/proftpd.conf
Add a user:
adduser name
You will get prompted for a password as well.
Then connect to your server with an ftp client using the settings you put in the conf file and specify the username & password you made.
30.07.2011, 12:21
(
Последний раз редактировалось array13; 30.07.2011 в 15:48.
)
i installed now centOS....im a noob whit this.......
Posts: 1,498
Threads: 19
Joined: Jun 2009
Reputation:
0
Login to shell via Putty and do the following:
# yum install vsftpd
^Less configuration required in comparison to ProFTPD
# service vsftpd start
Then do the following:
# useradd YOUR_USERNAME
# passwd YOUR_USERNAME
Passwd will ask you for a password, enter in your desired FTP password. YOUR_USERNAME should be your desired FTP username.
Assuming your networking works properly and you don't have a magical firewall blocking connections (which you probably don't), you should be able to connect to FTP via:
YOUR_IP
YOUR_USERNAME
YOUR_PASSWORD
Port: 21
Also, don't type in the # in the console, those are just a replication of what most CentOS remote login shells look like.