创建FTP服务器和无密码登陆
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建FTP服务器和无密码登陆相关的知识,希望对你有一定的参考价值。
工具:VMware,CRT;
关闭防火墙
关闭防火墙并设置开机开不启动
查看当前状态
[[email protected] ~]# systemctl status firewalld.service
#查看firewalld状态
[[email protected] ~]# systemctl stop firewalld
#关闭
[[email protected] ~]# systemctl start firewalld
#开启
[[email protected] ~]# systemctl disable firewalld
#开机自动关闭 //RHLE7
[[email protected] ~]# chkconfig --list|grep network
#查看开机是否启动 //RHLE6
[[email protected] ~]# systemctl enable firewalld
#开机自动启动
临时和永久关闭Selinux
临时关闭
[[email protected] ~]# getenforce
Enforcing
[[email protected]~]# setenforce 0
setenforce: SELinux is disabled
永久关闭
[[email protected] ~]# vim /etc/selinux/config
把:SELINUX=enforcing 改成:SELINUX=disabled
[[email protected] ~]# reboot
挂载光盘镜像
配置本地yum源,并清空原yum缓存,然后生成新的缓存列表安装完成
yum的一切配置信息都储存在一个叫yum.repos.d的配置文件中,通常位于/etc/yum.repos.d目录下。
安装两个FTP服务
具体命令:yum repolist; yum install ftp
创建一个用户登录FTP服务器配置无密码登录并可以创建重命名及删除命令
以上是关于创建FTP服务器和无密码登陆的主要内容,如果未能解决你的问题,请参考以下文章
我在笔记本搭建了FTP服务器,但是忘记了用户名和密码,无法登陆怎么办。