linux下vsftp服务的启动、停止、查看状态、杀死进程等命令
使用ps命令查看vsftp是否启动状态ps-ef|grep ftp如果显示ftp的进程号,表示ftp为启动状态。
使用service命令查看vsftp是否启动状态
service vsftpd status显示信息为is running(表示为启动状态)
如果为 is stopped(表示为关闭状态)
启动服务
service vsftpd start
停止服务
service vsftpd stop重启服务
service vsftpd restart
杀死ftp进程:
ps-ef|grep ftp
kill -9 pid其中 pid为ftp的进程
页:
[1]