美文网首页
Linux云计算学习笔记day47

Linux云计算学习笔记day47

作者: 我要笑 | 来源:发表于2019-06-13 20:17 被阅读0次

-数据库-存储迁移

[root@web01 /usr/share/nginx/html/blog]# id nginx 
uid=887(nginx) gid=887(nginx) groups=887(nginx)
[root@web01 /usr/share/nginx/html/blog]#  usermod -u 2222   nginx 
usermod: user nginx is currently used by process 7540
[root@web01 /usr/share/nginx/html/blog]# systemctl stop nginx php-fpm 
[root@web01 /usr/share/nginx/html/blog]#  usermod -u 2222   nginx 
[root@web01 /usr/share/nginx/html/blog]# id nginx 
uid=2222(nginx) gid=887(nginx) groups=887(nginx)
[root@web01 /usr/share/nginx/html/blog]# groupmod -g 2222 nginx 
[root@web01 /usr/share/nginx/html/blog]# id nginx 
uid=2222(nginx) gid=2222(nginx) groups=2222(nginx)
[root@web01 /usr/share/nginx/html/blog]# rpm -qa 
[root@web01 /usr/share/nginx/html/blog]# rpm -qa nfs-utils 
nfs-utils-1.3.0-0.61.el7.x86_64
[root@web01 /usr/share/nginx/html/blog]# ll /usr/share/nginx/html/blog/wp-content/uploads/
total 0
drwxr-xr-x 3 887 887 16 Jun 10 12:12 2019

-数据库-存储迁移

https://www.processon.com/view/link/5d004e07e4b0cbb88a599f6a

相关文章

网友评论

      本文标题:Linux云计算学习笔记day47

      本文链接:https://www.haomeiwen.com/subject/ezyefctx.html