Changes between Version 38 and Version 39 of TipAndDoc/Linux/LXC
- Timestamp:
- Dec 3, 2013 10:37:42 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TipAndDoc/Linux/LXC
v38 v39 851 851 852 852 == ホストで直接mountし、コンテナには--bindでアクセスさせる == 853 * /var/lib/lxc/CONTAINER/fstab 853 1. host# mount nfsserver:/path/to/export /mnt/somewhere 854 1. /var/lib/lxc/CONTAINER/fstab 854 855 {{{ 855 856 /mnt/somewhere path/to/mountdir none bind 0 0 856 857 }}} 857 * host# mount nfsserver:/path/to/export /mnt/somewhere 858 * host# lxc-start -d -n CONTAINER 859 * lxc$ mount 858 1. host# lxc-start -d -n CONTAINER 859 1. lxc$ mount 860 860 {{{ 861 861 nfsserver:/path/to/export on /path/to/mountdir type nfs4 (rw,relatime,...) … … 863 863 864 864 * ホスト上でread-onlyマウントしていても、/var/lib/lxc/CONTAINER/fstabでのread/write権限設定によって上書きされるので注意 865 * cifsも同じやりかたでマウントできる(cifsでは ほすとじょうでread-onlyマウントしていると、設定は引き継がれる模様)865 * cifsも同じやりかたでマウントできる(cifsではホスト上でread-onlyマウントしていると、設定は引き継がれる模様) 866 866 * ホスト上のマウントディレクトリを直接コンテナのディレクトリにbindする必要がある。つまり、以下のようなことは出来ない 867 *host# mount nfsserver:/path/to/export/dir1 /mnt/somewhere/dir1868 *lxc/CONTAINER/fstab {{{/mnt/somewhere path/to/mountdir none bind 0 0}}}869 * lxc$ ls -l /path/to/mountdir/dir1 # 何もマウントされていないように見える867 1. host# mount nfsserver:/path/to/export/dir1 /mnt/somewhere/dir1 868 1. lxc/CONTAINER/fstab {{{/mnt/somewhere path/to/mountdir none bind 0 0}}} 869 1. lxc$ ls -l /path/to/mountdir/dir1 {{{nfsserver:/path/to/export/dir1 が見えることが期待されるが、実際にはマウントされていない}}}