在linux上装了tftp服务,可是运行service tftp start 结果是:tftp:未被识别的服务,啥意思,
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在linux上装了tftp服务,可是运行service tftp start 结果是:tftp:未被识别的服务,啥意思,相关的知识,希望对你有一定的参考价值。
参考技术A FTP配置建议使用vsftp,如果使用了pure-ftpd,需要屏蔽掉pure-ftpd服务。
(1)Root用户执行yast2---》network services--》network services (xinetd)
将/usr/sbin/pure-ftpd 和/usr/sbin/vsftpd
分别将pure-ftp的状态置为off,vsftpd的状态置为on,然后单击按钮,修改完成。
(2)vi /etc/vsftpd.conf 注释掉下面的四项
#write_enable=YES
#local_enable=YES
#ascii_upload_enable=YES
#ascii_download_enable=YES
(3)vi /etc/ftpuser 将root用户注释掉
(4)重启FTP服务
# service vsftpd restart
Shutting down vsftpd done
Starting vsftpd done
重启服务后,再进行测试,使用本地用户及密码登陆(此时root用户不能登录)
请问你是这样解决的吗,若不是,又怎样弄好的? 参考技术B 1、检查/etc/xinetd.d/tftp文件,如果没有建立一个:
service tftp
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
flags = IPv4
2、如果存在,激活tftp服务
sudo chkconfig tftp on
3、建立tftp根目录、设置权限
4、重启xinetd服务
sudo service xinetd restart追问
还是不行,我那配置和你给出的是一样的 就是user = root 而你给出的是nobody,,,也激活了,也有根目录,也重启服务了,就是不行,,,运行netstat -a | grep tftp 还是什么都没有,运行service tftp start 还是说tftp:未被识别的服务
会不会是防火墙的问题啊
运行结果是tftpd:未被识别的服务
参考技术D service iptables stopservice httpd restart
service xinetd resart 第5个回答 2019-01-28 咋记得这个是整和在net服务里了,去修改net.cfg来开关。反正就是这个事,名字比较模糊了。
Linux中tftp安装及使用笔记
tftp命令用在本机和tftp服务器之间使用TFTP协议传输文件。
TFTP是用来下载远程文件的最简单网络协议,它其于UDP协议而实现。
linux服务器端tftp-server的配置
1、安装tftp服务器
需要安装xinetd(守护tftp)、tftp和tftp-server 3个软件
1)如果能上网,通过yum安装:
sudo yum install xinetd sudo yum install tftp sudo yum install tftp-server
2)如果不能上网,可以直接安装提供的rpm包:
rpm -ivh xinetd-2.3.14-18.fc9.i386.rpm rpm -ivh tftp-0.48-3.fc9.i386.rpm rpm -ivh tftp-server-0.48-3.fc9.i386.rpm
2、配置tftp服务器
修改/etc/xinetd.d/tftp文件,将其中的disable=yes改为disable=no。开启TFTP服务
主要是设置TFTP服务器的根目录,开启服务。修改后的文件如下:
service tftp { socket_type =dgram protocol =udp wait =yes user =root server =/usr/sbin/in.tftpd server_args =-s /home/walt740/tftpboot -c disable =no per_source =11 cps =100 2 flags =IPv4 }
说明:修改项server_args= -s -c,其中<path>处可以改为你的tftp-server的根目录,参数-s指定chroot,-c指定了可以创建文件。
3、启动tftp服务器并关闭防火墙
CentOS 7+: systemctl disable firewall;systemctl stop firewall systemctl enable xinetd;systemctl start xinetd CentOS 7-: /etc/init.d/iptables stop //关闭防火墙 sudo /sbin/service xinetd start 或 service xinetd restart /etc/init.d/xinetd start
看到启动[OK]就可以了
4、查看tftp服务是否开启
netstat -a | grep tftp
显示结果为
udp6 0 0 [::]:tftp [::]:*
表明服务已经开启,就表明tftp配置成功了。
5、tftp命令用法如下
tftp your-ip-address
【进入TFTP操作】
connect:连接到远程tftp服务器
mode:文件传输模式
put:上传文件
get:下载文件
quit:退出
verbose:显示详细的处理信息
tarce:显示包路径
status:显示当前状态信息
binary:二进制传输模式
ascii:ascii传送模式
rexmt:设置包传输的超时时间
timeout:设置重传的超时时间
help:帮助信息
?:帮助信息
6、命令使用 Linux向Windows直接传文件/取文件
tftp 192.168.1.107
tftp> put 123.txt
tftp> get 456.txt
tftp Error code 0: Permission denied解决办法
【错误】Error code 0: Permission denied,是因为tftpboot文件夹没有权限,或者是要上传和下载的文件没有权限。
【解决】修改权限
sudo chmod 777 -R /tftpboot
以上是关于在linux上装了tftp服务,可是运行service tftp start 结果是:tftp:未被识别的服务,啥意思,的主要内容,如果未能解决你的问题,请参考以下文章
linux+nginx+php问题。我在linux上装了nginx+php,可是能打开网页却打不开.php文件,这是哪里问题呢??
在linux上装 postgresql 在 windows或 linux 连不上的问题的解决方法