磁盘扩容后文件目录迁移步骤
Posted 表演给自己看的认真
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了磁盘扩容后文件目录迁移步骤相关的知识,希望对你有一定的参考价值。
1、申请扩容,只能挂接一个新盘
2、将原目录下的文件复制到新盘挂接的目录下
cp -r /u02/nginx/html /data/nginx
3、修改nginx下location指向的root路径
server {
listen 80 ;
server_name 127.0.0.1;
charset utf-8;
underscores_in_headers on;
location / {
#root html;
root /data/nginx/html;
index index/index.html index.htm;
}
}
4、重启nginx
sudo ./nginx -s reload
5、修改doc-name的配置文件,修改发布文件上传的地址
#storage.path: /u02/nginx/html/doc/
storage.path: /data/nginx/html/doc/
以上是关于磁盘扩容后文件目录迁移步骤的主要内容,如果未能解决你的问题,请参考以下文章