小知识点的补充:
一、设置开机启动
1.将服务设置为开机自动启动
方案一:修改 rc.local文件 vi /tec/rc.local 加入:/usr/local/bin/vsftpd & [&代表后台进程启动]
方案二:chkconfig -level 5 vsftpd on
2.查看其它服务:
chkconfig --list|more
chkconfig --list|grep vsftpd ---管道分页
3.推荐方式:
chkconfig vsftpd on
二、SSH-initlevel
1.修改启动级别:
2.远程登录linux服务器
a.telnet 古老 不安全 所有命令都是明文传输
b.ssh 命令是加密的 推荐方式
3.linux上的ssh服务
service sshd start
chkconfig sshd on
4.客户端
putty
win crt
xshell