Update 2016-02-12:修复了Nginx下 PATH_INFO 兼容设置带来的伪静态URL无法使用问题。
服务器配置
- Ubuntu 14.04.3 LTS (GNU/Linux 3.16.0-60-generic x86_64)
- Nginx 1.9.11
- PHP 5.5.9-1ubuntu4.14
- Percona Server 5.6.28-76.1
Update 2016-02-12:修复了Nginx下 PATH_INFO 兼容设置带来的伪静态URL无法使用问题。
这篇基本上是手工OTA操作备忘。
适用于以下设备:
设备必须符合以下条件:
请备份数据。本人不对任何数据丢失或者设备损坏负责。
一些主机间迁移 WordPress 的操作流程和注意事项。
nginx 1.9.5 现已支持 HTTP/2 协议。
有些时候我们想实现自动登录,但又没法使用公钥验证,这时候 expect 就派上用场了。
一行版本:
1 |
expect -c "spawn ssh [email protected]; expect \"password\"; send \"your-password-here\r\"; interact" |
Script 版本:
1 2 3 4 5 6 |
#!/usr/bin/expect spawn ssh username@server.domain expect "password" send "your-password-here\r" interact |