0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Azure StorageをCentOSにマウントする

Posted at

マウント先ディレクトリ作成

マウント先のディレクトリを作成します。

# mkdir /mnt/sample

コマンド

以下コマンドでマウントが可能です。
ストレージアカウント名とkey1名は、Azure Portalから確認しましょう。

# sudo mount -t cifs //<ストレージアカウント名>.file.core.windows.net/<ファイル共有名> /mnt/sample -o vers=3.0,username=<ストレージアカウント名>,password=<key1名>,dir_mode=0777,file_mode=0777

自動マウントする場合

マウント設定

/etc/fstabに設定を追記します。

//<ストレージアカウント名>.file.core.windows.net/<ファイル共有名> /mnt/sample cifs,vars=3.0,credentials=/etc/smbcredentials/sample.cred,dir_mode=0777,file_mode=0777

Credentials情報

credentials情報を/etc/smbcredentialsに作成します。

sample.cred
# mkdir /etc/smbcredentials
# cd /etc/smbcredentials
# touch sample.cred

# echo 'username=<ストレージアカウント名>' > sample.cred
# echo 'password=<key1名>' > sample.cred

# chmod 600 sample.cred

マウント実行

マウント設定を反映します。
何もメッセージが出なければ成功です。

sudo mount -a

確認

以下のように表示されれば問題なくマウントされています。

# df
Filesystem                                            1K-blocks    Used Available Use% Mounted on
/dev/sda2                                              30929148 3779512  27149636  13% /
devtmpfs                                                 462776       0    462776   0% /dev
tmpfs                                                    474920       0    474920   0% /dev/shm
tmpfs                                                    474920   12852    462068   3% /run
tmpfs                                                    474920       0    474920   0% /sys/fs/cgroup
/dev/sda1                                                508580   82188    426392  17% /boot
/dev/sdb1                                               4060864   16380   3818488   1% /mnt/resource
tmpfs                                                     94984       0     94984   0% /run/user/1000
//<ストレージアカウント名>.file.core.windows.net/<ファイル共有名>  10485760      64  10485696   1% /mnt/sample
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?