本地与服务器文件交互 - UbigeneCode/project_wiki GitHub Wiki
本地与服务器文件交互常用的有一下三种方式
1. git
> 将本地代码上传到git上 然后在服务器上面下载
2. ftp
如果要上传下载文件还可以使用ftp
ftp 在服务器的配置文件在 /etc/vsftpd.conf
ftp 在服务器的用户文件在 /etc/vsftpd.userlist
ftp 在服务器中重启 /etc/init.d/vsftpd restart
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_list_enable=YES
listen=YES
local_root=/var/www/html/php_first
pam_service_name=vsftpd
userlist_enable=YES
userlist_deny=NO
userlist_file=/etc/vsftpd.userlist
tcp_wrappers=YES
listen_port=21
- scp 命令 (只适用于linux 系统)
上传文件
scp /path/to/file(要上传的的文件路径) [email protected]:/path/to/file(保存到服务器的路径)
下载文件
scp [email protected]:/path/to/file(保存到服务器的路径) /path/to/file(要上传的的文件路径)