nginx+tomcat+nas
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx+tomcat+nas相关的知识,希望对你有一定的参考价值。
第一步:部署nas节点
[[email protected] ~]# df -Th
[[email protected] ~]# fdisk /dev/vda---------------------------------------------->1.查看磁盘2.创建扩展分区四3.添加逻辑分区五六七各500M
[[email protected] ~]# yum install mdadm
[[email protected] ~]# mdadm -C /dev/md0 -l 5 -n 3 /dev/vda{5,6,7}----------------->创建raid5
[[email protected] ~]# mdadm -Ds
[[email protected] ~]# mdadm -Ds >> /etc/mdadm.conf
[[email protected] ~]# vim /etc/mdadm.conf----------------------------------------->软raid永久生效
DEVICE /dev/vda5 /dev/vda6 /dev/vda7
[[email protected] ~]# rpm -qf `which pvcreate`
[[email protected] ~]# yum install lvm2-------------------------------------------->安装逻辑卷管理(Logical Volume Manager,LVM)
[[email protected] ~]# pvcreate /dev/md0------------------------------------------->添加物理卷(Physical Volume,PV)
[[email protected] ~]# vgcreate vg0 /dev/md0--------------------------------------->添加卷组(Volume Group,VG)
[[email protected] ~]# lvcreate -L 800M -n /dev/vg0/lv0 vg0------------------------>添加逻辑卷(Logical Volume,LV)
[[email protected] ~]# mkfs.xfs /dev/vg0/lv0--------------------------------------->格式化
[[email protected] ~]# mkdir /webdir
[[email protected] ~]# mount /dev/vg0/lv0 /webdir---------------------------------->挂载文件
[[email protected] ~]# vim /etc/rc.local------------------------------------------->开机自起
mount /dev/vg0/lv0 /webdir
[[email protected] ~]# ll /etc/rc.local
[[email protected] ~]# chmod +x /etc/rc.local-------------------------------------->加执行权限
[[email protected] ~]# yum install nfs-utils--------------------------------------->安装网络文件系统(Network File System,NFS)
[[email protected] ~]# vim /etc/exports
#/webdir *(ro)
#把webdir文件以只读方式共享给所有人
/webdir 192.168.122.0/24(rw,no_root_squash,sync)-------------------------->读写权限共享给这个网段
[[email protected] ~]# ll /webdir
[[email protected] ~]# ll /webdir -d----------------------------------------------->显示目录自身属性
drwxr-xr-x 2 root root 6 10月 27 12:52 /webdir/
[[email protected] ~]# chown -R nfsnobody.nfsnobody /webdir
[[email protected] ~]# ls -ld /webdir/
drwxr-xr-x 2 nfsnobody nfsnobody 6 10月 27 12:52 /webdir/
本文出自 “在网络世界休闲记” 博客,请务必保留此出处http://blackchris.blog.51cto.com/13423856/1976754
以上是关于nginx+tomcat+nas的主要内容,如果未能解决你的问题,请参考以下文章