码迷,mamicode.com
首页 >  
搜索关键字:xinetd    ( 391个结果
xinetd转向功能
什么是xinetd?大家对被称作超级服务器的Inetd一定很熟悉,其实现控制对主机网络连接。当一个请求到达由Inetd管理的服务端口,Inetd将该请求转发给名为tcpd的程序。Tcpd根据配置文件hosts.{allow,deny}来判断是否允许服务该请求。如果请求被允许则相应的服务器程序(如:ftpd、..
分类:Web程序   时间:2014-10-11 18:30:16    阅读次数:172
网络安装linux
一、 在另外一台服务器安装 tftp tftp-server ftp hdcp yum install tftp tftp-server  vsftpd dhcp -y 安装过程中 会自动检查依赖关系并自动将 xinetd(超级守护进程)安装 二、 配置 xinetd vim /etc/xinetd.d/tftp 打开tftp的配置文件 可以看到 disable 默认为Yes 将其改为 n...
分类:系统相关   时间:2014-09-15 17:50:29    阅读次数:335
rsync重启
一般编辑 /etc/rsync.conf, 后需要杀掉重开rsync进程可以在/etc/xinetd.d/rsync 中, 将disable设为no;然后 /etc/init.d/xinetdrestart就可以了。 xinetd读取的配置文件是 /etc/rsyncd.conf ............
分类:其他好文   时间:2014-09-12 20:35:34    阅读次数:217
Centos6.5无人值守安装
步骤 1、mount /dev/sr0 /media/ 2、安装所需要的软件 安装并配置tftp服务 yum install tftp tftp-server vsftpd dhcp syslinux nfs-utils vim /etc/xinetd.d/tftp service tftp { disable = no ...
分类:其他好文   时间:2014-09-09 16:23:29    阅读次数:310
Linux--远程访问服务器
远程访问linuxde工具有很多,这里我写两个。分别是telnet和ssh。A.telnet服务器配置1.yuminstalltelnet和yuminstalltelnet-server安装telnet服务器2.vim/etc/xinetd.d/telnet编辑telnet的配置文件3.找到disable=yes将yes改成no4.serverxinetdstart开启telnet服务器5.到window系..
分类:系统相关   时间:2014-09-09 13:50:09    阅读次数:284
rsync错误解决
rsync启动:/usr/bin/rsync--daemon守护进程启动(没装xinetd)如果装了xinetd:servicexinetdstart(二者选一即可)错误:@ERROR:authfailedonmoduleclientrsyncerror:errorstartingclient-serverprotocol(code5)atmain.c(1503)[sender=3.0.6]查看日志显示:authfailedonmodulec..
分类:其他好文   时间:2014-09-04 10:37:29    阅读次数:308
8.23 http server 项目
xinetd:负责http底层的传输第一步:在/etc/xinetd.d下创建 micro_httpd文件sudo vim micro_httpdservice micro_httpd{ socket_type = stream protocol = tcp wait = no user = liu...
分类:其他好文   时间:2014-09-04 00:07:37    阅读次数:240
gssftp,vsftp与xinetd的一些知识
1、xinetd是超级守护程序,管理着许多服务。所以可以通过service xinetd start启动。2、gssftp是Redhat linux企业版自带的FTP工具。包含在/etc/xinetd/gssftp下。提供krb5验证机制。3、vsftp也是FTP服务器软件,功能比gssftp完备。...
分类:Web程序   时间:2014-09-02 17:07:04    阅读次数:252
构建基本的嵌入式Linux根文件系统
配置tftp配置tftp服务的步骤: 1、安装相关软件包:tftpd(服务端),tftp(客户端),xinetd sudo apt-get install tftpd tftp xinetd 2、建立配置文件 在/etc/xinetd.d/下建立一个配置文件tftp sudo vi tftp 在文件...
分类:系统相关   时间:2014-08-25 18:46:34    阅读次数:324
ubuntu上安装rsync+sersync
服务器:数据从19--->12和14172.16.1.12(rsync_server)172.16.1.14(rsync_server)172.16.1.19(rsync_client、sersync)172.16.1.12服务器:安装rsyncserver,rsync以xinetd方式运行#安装命令apt-getinstallrsyncxinetd#创建存放文件目录,命令如下:mkdir/data/res#修..
分类:其他好文   时间:2014-08-19 14:44:15    阅读次数:193
391条   上一页 1 ... 35 36 37 38 39 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!