- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Enable FTP in Linux
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 06:58 PM
тАО11-26-2005 06:58 PM
I have given a task to enable FTP in Linux systen and am sure how can i do that coz am still trainee ,,
can somebody help me plzz
what the command i have to use to enable FTP ??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 07:51 PM
тАО11-26-2005 07:51 PM
Re: Enable FTP in Linux
service vsftpd start
I'm assuming that you have vsftpd installed.
If you have trouble executing this command let us know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 07:58 PM
тАО11-26-2005 07:58 PM
Re: Enable FTP in Linux
this is what i got!
acually am working on a test system that given to me, I don't know even which version this one !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 08:05 PM
тАО11-26-2005 08:05 PM
Re: Enable FTP in Linux
this reveals the exact version of redhat systems (in case this is a redhat system).
what's the output?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 09:11 PM
тАО11-26-2005 09:11 PM
Re: Enable FTP in Linux
this is the output!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 09:26 PM
тАО11-26-2005 09:26 PM
Re: Enable FTP in Linux
cat /etc/redhat-release
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 09:32 PM
тАО11-26-2005 09:32 PM
Re: Enable FTP in Linux
Now I got this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2005 10:35 PM
тАО11-26-2005 10:35 PM
Re: Enable FTP in Linux
first install the vsftpd package-it's located on one of the installation disks.
the installation command is:
rpm -Uvh vsftpd*
Now you're able to start the service
service vsftpd start
that's it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-27-2005 05:56 PM
тАО11-27-2005 05:56 PM
Re: Enable FTP in Linux
I did that and I got >>> Receive unique on
what does that mean?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-27-2005 06:02 PM
тАО11-27-2005 06:02 PM
Re: Enable FTP in Linux
If you've managed to start the ftp service,assigning points will be appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-27-2005 10:54 PM
тАО11-27-2005 10:54 PM
Re: Enable FTP in Linux
service vsftpd start
chkconfig vsftpd on
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-28-2005 12:39 AM
тАО11-28-2005 12:39 AM
Re: Enable FTP in Linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-28-2005 01:45 AM
тАО11-28-2005 01:45 AM
Re: Enable FTP in Linux
can verify this by using the rpm command as root
# rpm -qa | grep -i ftp
Another alternative is to use SFTP. Of course the recipient system needs the SSH utilities installed as well but on many distros of Linux, the SSH package is installed by default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-28-2005 05:43 PM
тАО11-28-2005 05:43 PM
Re: Enable FTP in Linux
If it is Red Hat Linux Enterprise 3, type the following commands..
#ntsysv
find if vsftpd service is present. if it present, check the squre box..
#service vsftpd start
Create a user (test)
Go to client machine and type..
#ftp
If vsftp is not present..
Download wu-ftp from Red Hat site..
#rpm -ivh --force
#vi /etc/inetd.d/wu-ftp .. make changes in the file
disable=no
save and come out..
#vi /etc/ftpd/ftpaccess
(Read the file carefully .. u need to made an entry..)
users test
save and come out..
#service inetd restart
Go to client machine.. do ftp to the server..
Hope it would work fine..
cheers
indrajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-28-2005 07:53 PM
тАО11-28-2005 07:53 PM
Re: Enable FTP in Linux
I will try and let you know :)
....>>>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2005 06:21 PM
тАО11-29-2005 06:21 PM
Re: Enable FTP in Linux
I got many services in the list and one of them is gssftp
is it the right one or i have to search for vsftpd file ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2005 06:47 PM
тАО11-29-2005 06:47 PM
Re: Enable FTP in Linux
lftp-2.6.3-5.src.rpm
do you have any idea about it ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2005 01:23 AM
тАО12-01-2005 01:23 AM
Re: Enable FTP in Linux
I am trying to install the vsftpd file from a CD, but i got an error msg !!
Installation Tree Not Found!
The path /mnt/cdrom does not look like a valid installation source.
could you explain this to me plz?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2005 02:14 AM
тАО12-01-2005 02:14 AM
Re: Enable FTP in Linux
To install the rpm, you need to be in the RPMS folder.
Then rpm -ivh
As an ITRC trainee, please take the time to assign points to those that provided you help.
Linux trainee? I had to train myself!
Good luck,
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-02-2005 06:10 PM
тАО12-02-2005 06:10 PM
SolutionSorry for the late reply...
u need to mount the cd properly.. do the following steps..
#mount /dev/cdrom /mnt
#cd /mnt
type ls command and find for Red Hat Directory..
#cd RedHat/RPMS
#ls vsftp*
u should able to see a file with vsftpxxx.rpm
#rpm -ivh --force vsftpxxxx.rpm
it will install the rpm package.
#ntsysv
u should able to see the vsftpd service.
or u download load wu-ftp package from red hat site. install the package using rpm command.
#vi /etc/xinetd.d/wu-ftp
disable=no
save and come out..
#service xinetd restart
#vi /etc/ftpd/ftpaccess
users
Try this and let me know if it is working fine..
cheers
indrajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-03-2005 05:19 PM
тАО12-03-2005 05:19 PM
Re: Enable FTP in Linux
I followed your steps and i enabled FTP , I did the following:
#mount /dev/cdrom /mnt
#cd /mnt
#ls
I got cdrom
#cd cdrom/RedHat/RPMS
#ls vsftp*
I saw the file that i want to install
#rpm -ivh --force vsftpxxxx.rpm
succeccdully installed
#ntsysv
I saw the vsftpd service in the list
#service xinetd restart
but here I faced problem >>
whenever I type this command
#vi /etc/ftpd/ftpaccess
I am getting this result
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
"/etc/xinetd.d/wu-ftp" [New File] 0,0-1 All
Can you explain this please!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-03-2005 06:16 PM
тАО12-03-2005 06:16 PM
Re: Enable FTP in Linux
I typed
vi /etc/ftpd/ftpaccess
users muna
:wq!
then I got a msg telling me :
vi /etc/ftpd/ftpaccess .. file not found!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-05-2005 10:06 PM
тАО12-05-2005 10:06 PM
Re: Enable FTP in Linux
#ftp
ftp>open
Connected to
220 (vsFTPd 1.2.1)
530 Please login with USER and PASS.
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Name (
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
Now It's working
Thanx alot for helping me :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-06-2005 04:50 PM
тАО12-06-2005 04:50 PM