mount -t cifs -o sync,username="administrator",password="123456" //10.10.3.246/f /usr/local/openresty/nginx/html/down
说明:
mount -t cifs -o 这个就不多说了(照着写吧)。
username="administrator" 访问需要的用户名。
password="123465" 访问需要的密码。
//10.10.3.246/f 共享机器的IP地址,后面的f为共享名。
/usr/local/openresty/nginx/html/down挂载的目录(共享目录被挂载到这里)。