`
jerome_wang
  • 浏览: 157048 次
  • 性别: Icon_minigender_1
  • 来自: 云南
社区版块
存档分类
最新评论

liunx FTP 配置 与相关问题

 
阅读更多

                                             
 [root@www ~]#
yum -y install vsftpd
[root@www ~]#
vi /etc/vsftpd/vsftpd.conf
# line 12: no anonymous

anonymous_enable=
NO
# line 80,81: uncomment ( allow ascii mode )

ascii_upload_enable=YES
ascii_download_enable=YES
# line 95, 96: uncomment ( enable chroot )

chroot_local_user=YES
chroot_list_enable=YES
# line 98: uncomment ( specify chroot list )

chroot_list_file=/etc/vsftpd/chroot_list
# line 104: uncomment

ls_recurse_enable=YES
# add at the last line

# specify root directory ( if don't specify, users' home directory become FTP home directory)

local_root=public_html
# use localtime

use_localtime=YES
[root@www ~]#
vi /etc/vsftpd/chroot_list
# add users you allow to move over their home directory

cent
[root@www ~]#
/etc/rc.d/init.d/vsftpd start

Starting vsftpd for vsftpd:
[ OK ]

[root@www ~]#
chkconfig vsftpd on
 
 
1、添加用户,首先用adduser命令添加一个普通用户,命令如下:

#adduser tommy

//添加一个名为tommy的用户

#passwd tommy //修改密码

Changing password for user tommy.

New UNIX password: //在这里输入新密码

Retype new UNIX password: //再次输入新密码

passwd: all authentication tokens updated successfully.

2、赋予root权限

方法一: 修改/etc/sudoers 文件,找到下面一行,把前面的注释(#)去掉

## Allows people in group wheel to run all commands

%wheel ALL=(ALL) ALL

然后修改用户,使其属于root组(wheel),命令如下:

#usermod -g root tommy

修改完毕,现在可以用tommy帐号登录,然后用命令su – ,即可获得root权限进行操作。

方法二: 修改/etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:

## Allow root to run any commands anywhere

root ALL=(ALL) ALL

tommy ALL=(ALL) ALL

修改完毕,现在可以用tommy帐号登录,然后用命令su – ,即可获得root权限进行操作。

方法三: 修改/etc/passwd 文件,找到如下行,把用户ID修改为0 ,如下所示:

tommy:x:500:500:tommy:/home/tommy:/bin/bash

修改后如下

tommy:x:0:500:tommy:/home/tommy:/bin/bash

保存,用tommy账户登录后,直接获取的就是root帐号的权限。

友情提醒:虽然方法三看上去简单方便,但一般不推荐使用,推荐使用方法二。

 

vsftpd dead , but subsys locked –解除方法汇总(Red Hat Enterprise Linux 4)

系统: RHEL4

ftp软件:vsftpd 2.**** , 与 xinetd 分离运行.

状态: 执行用service vsftpd status ->vsftpd dead, but subsys locked ,重新安装vsftp,结果依旧.

1. 先删除 /var/lock/subsys/vsftpd -> rm -frv /var/lock/subsys/vsftpd

2. 以下几种可能的解决方法(或者关系)

a. 仔细检查/etc/vsftpd/vsftpd.conf的配置文件的内容格式.确定正确,主要是全角半角字符的编码错误.

b. 确认 listen=YES TCP_trappers=YES

c. cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.bak \ rm -f /etc/vsftpd/vsftpd.conf

cp /etc/vsftpd/vsftpd.conf .bak /etc/vsftpd/vsftpd.conf \ rm -f /etc/vsftpd/vsftpd.conf.bak

说明:cp 和mv命令对selinux security context影响 cp将拷贝过去的文件的context改变为目的目录的context,而mv则不会改变移动文件的context

(I’ve had problems like this before, and I finally found out what the problem was. When you ‘mv’ a file (like a config file from a home dir to the proper location) it keeps the selinux context setting from the originating directory. When you ‘cp’ a file, it will change that context to the context of the directory being moved too. I have mv’d backups of configs from home dir to /etc and ran into the same error message. If you do a fixfiles relabel, or touch /.autorelabel and reboot, it should re-write the security context and hopefully clear up your problems.)

d. 关闭 xinetd 服务, 先启动 vsftpd, 再启动xinetd . (删除gssftp)

分享到:
评论

相关推荐

    Linux FTP服务配置

    Linux FTP服务配置主要涉及到的是VSFTP服务器的配置,VSFTPd(Very Secure FTP Daemon)是一个安全的FTP服务器,提供对匿名用户和本地用户的不同访问权限控制。配置文件位于`/etc/vsftpd/vsftpd.conf`,其中包含了...

    LinuxFTP服务器配置实验报告整理.pdf

    Linux FTP 服务器配置实验报告整理 本实验报告旨在指导学生掌握 Linux 下的 FTP 服务器配置方法,熟悉 FTP 客户端工具的使用,并掌握常见的 FTP 服务器的故障排除。实验中,我们将使用 Vsftpd 服务器,配置 FTP ...

    linux下ftp配置

    Linux 下 FTP 服务器配置 Linux 下 FTP 服务器配置是指在 Linux 操作系统下安装、配置和启动 FTP 服务器,以便用户可以通过 FTP 客户端上传、下载文件。FTP 服务器是一种常用的网络服务,允许用户通过 Internet ...

    linux Ftp服务配置说明

    修改FTP配置文件 - 打开VSFTPD的配置文件`/etc/vsftpd/vsftpd.conf`: ```bash vim /etc/vsftpd/vsftpd.conf ``` - **禁用匿名登录**:在配置文件中找到`anonymous_enable=YES`这一行,并将其更改为`anonymous_...

    Linux Ftp服务器配置

    linux配置ftp服务器,以前都比较复杂,按照向导来,可以提供些参考

    linux FTP配置详解

    Linux FTP 配置详解 Linux FTP 配置详解是一种常见的网络服务配置,通过 FTP 服务器,可以让用户通过互联网访问和传输文件。在 Linux 系统中,实现 FTP 服务的软件有很多,常见的包括 vsftpd、Wu-ftpd 和 Proftp 等...

    linux 下ftp服务器配置

    linux 下ftp服务器配置 linux 下ftp服务器配置

    linuxftp配置心得

    Linux FTP配置心得主要涉及到对vsftpd(Very Secure FTP Daemon)服务的设定,这是一个流行的FTP服务器软件,尤其在Linux系统中被广泛使用。在本文中,我们将深入探讨如何配置FTP服务器,使其仅允许匿名用户连接,并...

    linux下ftp配置文件

    CentOS7下的一份完整vsftpd的配置文件。阿里云三台CentOS7.0 linux主机亲测有效。 不过需要单独新建一份文件/vsftpd/chroot_list文件,里面写上允许登录的ftp用户名。

    《Linux服务器配置与管理》教学课件—第 12 章 FTP 服务器配置.pdf

    《Linux服务器配置与管理》教学课件—第 12 章 FTP 服务器配置.pdf《Linux服务器配置与管理》教学课件—第 12 章 FTP 服务器配置.pdf《Linux服务器配置与管理》教学课件—第 12 章 FTP 服务器配置.pdf《Linux服务器...

    Linux下FTP服务器配置与管理

    在Linux操作系统中,FTP服务器的配置与管理是一个关键任务,特别是在网络文件共享和协作的场景下。FTP(文件传输协议)是一种应用层协议,工作在OSI模型的第七层,利用TCP作为传输层协议,确保数据传输的可靠性,...

    linux系统的ftp配置

    在进行FTP配置之前,首先需要检查系统上已经安装了哪些与FTP相关的软件包。通过以下命令可以查询: ```bash [root@centos6osCD1]# rpm -qa | grep ftp ``` 此外,也可以使用`find`命令搜索系统中所有与“ftp”相关...

    linux ftp目录迁移

    #### 一、理解FTP配置文件 1. **vsftpd.conf文件解读**: - 在Linux系统中,FTP服务通常由vsftpd(very secure FTP daemon)程序提供。 - 主要配置文件位于`/etc/vsftpd/vsftpd.conf`。 - 这个文件包含了所有...

    linux ftp上传文件

    Linux FTP 上传文件配置 Vsftpd 支持限额配置 Linux FTP 上传文件是指通过 FTP protocol 将文件上传到 Linux 服务器上的一种方法。Vsftpd 是一个广泛使用的 FTP 服务器软件,它提供了多种配置选项来满足不同的需求...

    linux下搭建ftp虚拟主机的配置过程,一台服务器多FTP站点.docx

    Linux 下搭建 FTP 虚拟主机的配置过程 在 Linux 系统中,默认情况下,VSFTPD 不像 IIS 那样可以在同一台主机上建立多个 FTP 协议站点。但是,并不是没有办法让 VSFTPD 在同一台主机上建立多个 FTP 站点。下面我们将...

    Linux下搭建ftp配置视频

    "17rumen说明.txt"文件可能是关于17rumen网站的使用指南,或者与vsftpd配置相关的额外说明。它可能包含如何访问该网站获取更多资源、社区支持,以及关于如何解决配置过程中遇到的问题的提示。 总的来说,通过学习这...

    Linux FTP服务器配置实验报告.docx

    Linux FTP 服务器配置实验报告 本实验报告的主要目标是配置 Linux FTP 服务器,了解 Vsftpd 服务器的配置方法、FTP 客户端工具的使用和常见的 FTP 服务器故障排解。本报告将详细介绍实验步骤和结果,并对实验结果...

    Linux离线安装ftp安装包

    离线安装FTP服务器需要对Linux系统有一定了解,但只要按照上述步骤操作,即使在没有网络连接的情况下,也能顺利安装和配置`vsftpd`。这个过程不仅有助于学习Linux系统的管理,也为在特殊环境下部署FTP服务提供了实用...

    Linux下安装与配置FTP工具

    Linux下安装与配置FTP工具是一项常见的系统管理员任务,通常用于远程文件传输和维护。以下是详细的知识点: 1. 检查nologin的位置: 在Linux系统中,nologin是一个命令行工具,通常位于/usr/sbin/nologin或/sbin/...

    FTP服务器win serer与linux对比

    FTP 服务器 Windows Server 与 Linux 对比 FTP 服务器在企业中扮演着非常重要的角色,选择合适的操作系统是非常关键的。下面我们将从性能、安全性、易用性三个方面对 Windows Server 和 Linux 两个操作系统进行对比...

Global site tag (gtag.js) - Google Analytics