VPS 常用 SSH 命令

简介:

重启nginx

/usr/local/nginx/sbin/nginx -s reload

修改 nginx conf

vim /usr/local/nginx/conf/vhost/xxx.conf

删除整个目录

rm -rf /folder/

拷贝整个目录

cp -R /somefolder/. /someotherfolder

修改所有文件权限(注意最后的斜杠和分号,如果想要修改目录则把 f 换为 d)

 

find -type -f -exec chmod 655 {} ;

 

 

经过实践发现 -type 后面的参数不能加 '-'

find -type f -exec chmod 655 {} ;

远程下载文件(用来远程下载wordpress程序)

wget url

解压缩

unzip

相关文章
|
7月前
|
Linux 网络安全
Linux命令(124)之ssh
Linux命令(124)之ssh
79 2
|
网络安全 数据安全/隐私保护
ssh远程执行命令自动输入密码方式
ssh远程执行命令自动输入密码方式
2248 0
|
7月前
|
安全 Shell Linux
【Shell 命令集合 文件管理】Linux ssh 远程主机之间复制文件 scp 命令使用教程
【Shell 命令集合 文件管理】Linux ssh 远程主机之间复制文件 scp 命令使用教程
259 0
|
6月前
|
安全 Linux Shell
Linux中SSH命令介绍
Linux中SSH命令介绍
160 2
|
7月前
|
Ubuntu Shell Linux
使用sshpass工具通过SSH执行远程命令
`sshpass`是一个用于在脚本中自动输入SSH密码的工具 **在Debian/Ubuntu上安装sshpass:** ```bash sudo apt-get install sshpass ``` **在CentOS/RHEL上安装sshpass:** ```bash sudo yum install sshpass ``` **在Fedora上安装sshpass:** ```bash sudo dnf install sshpass ``` 安装完成后,你可以使用`sshpass`命令通过SSH执行远程命令。以下是一个示例: ```bash sshpass -p 'yo
691 0
|
4月前
|
安全 Linux Shell
SSH 命令完整实用指南 | Linux SSH 服务
【8月更文挑战第20天】
536 0
|
4月前
|
jenkins 网络安全 持续交付
Jenkins Pipeline 流水线 - 上传文件 Publish over SSH 执行命令
Jenkins Pipeline 流水线 - 上传文件 Publish over SSH 执行命令
263 0
|
7月前
|
安全 网络协议 Linux
Linux ssh 命令详解
Linux ssh 命令详解
198 0
|
Cloud Native 网络安全 Go
SSH连接服务器后执行多条命令
SSH连接服务器后执行多条命令
150 0
|
安全 Linux 网络安全
SSH命令详解
SSH命令详解
233 0
SSH命令详解
下一篇
DataWorks