editplus如何连接Linux,建立root用户方法和建立普通用户的配置

1.

editplus如何通过FTP连接Linux一个

2、方法一:建立root用户

editplus如何通过FTP连接Linux

3、方法二:建立普通用户

在Linux配置如下:

1. adduser -d /home/shipu/ user  #在/home/shipu/下创建用户名为user的用户
2. passwd user #为此用户设置密码
3. systemctl status vsftpd  #检查vsftpd
4. systemctl start vsftpd   #开启
5. systemctl status firewalld  #检查防火墙状态
6. systemctl stop firewalld  #关闭

7.chown root:user home -R
8. chmod 775 home -R    #设置权限
9. vim /etc/vsftpd/vsftpd.conf   
10. getsebool -a | grep ftp   
11. setsebool ftpd_full_access on  #将ftpd_full_access打开
12. 在EditPlus中添加此用户登录即可(界面如下)

editplus如何通过FTP连接Linux

 

相关文章:

  • 2021-08-09
  • 2021-12-19
  • 2021-11-13
  • 2021-06-06
  • 2021-09-01
  • 2021-06-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-01
  • 2021-07-25
  • 2021-05-08
  • 2021-07-27
  • 2021-07-22
  • 2021-12-22
相关资源
相似解决方案