Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to set up and configure ftp Server in linux

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how to set up and configure a ftp server in linux. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Tftp Server-installation

Install tftp-server using the RPM package

1. If you can see that the service has been started with the following command, you do not need to install it

[arm@localhost] # netstat-a | grep tftp

Installed result: udp 0 0 *: tftp *: *

2. If it is not installed, execute the following command to install.

[root@localhost] # rpm-ivh tftp-server-0.42-3.1.i386.rpm (rhel5 installation CD\ Servers directory)

3. Establish the main working directory of tftp

[root@localhost btools] # mkdir / tftpboot

Tftp Server-configuration

4. Modify the configuration file

[root@localhost btools] # vi / etc/xinetd.d/tftp

Service tftp

{

...

Socket_type = dgram

…… …… ……

Server = / usr/sbin/in.tftpd

Server_args =-s / tftpboot

Disable = no

…… …… ……

} after installation, disable may be yes, but do not turn on tftp and change it to no.

Tftp Server-start

# / etc/init.d/xinetd start

# netstat-a | grep tftp

Udp 0 0 *: tftp *: * configured successfully

Thank you for reading! This is the end of this article on "how to set up and configure ftp servers in linux". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report