stoney cloud: Multi-Node Installation: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
==== Manual Steps ==== | ==== Manual Steps ==== | ||
Install a transfer user. | Install a transfer user. | ||
<code> | |||
lvcreate -L 60G -n transfer local0 | |||
mkfs.xfs -L "OSBD_transfe" /dev/local0/transfer | |||
cat << EOF >> /etc/fstab | |||
LABEL=OSBD_transfe /home/transfer xfs noatime,nodev,nosuid,noexec 0 2 | |||
EOF | |||
mount /home/transfer | |||
adduser -d transfer | |||
# passwd transfer | |||
</code> | |||
[[Category:Documentation]] | [[Category:Documentation]] |
Revision as of 11:28, 6 September 2013
Specialized Installation
Primary-Master-Node (vm-node-01)
If you configured a additional Backup Volume on the Storage Nodes, you want to mount them now in the VM-Node.
Log into the Primary-Master-Node and execute the node-configuration script as follows:
/usr/sbin/fc-node-configuration --node-type primary-master-node
Manual Steps
Install a transfer user.
lvcreate -L 60G -n transfer local0
mkfs.xfs -L "OSBD_transfe" /dev/local0/transfer
cat << EOF >> /etc/fstab
LABEL=OSBD_transfe /home/transfer xfs noatime,nodev,nosuid,noexec 0 2
EOF
mount /home/transfer
adduser -d transfer
- passwd transfer