摘要:如下面示例中的有兩種情況,你這個(gè)數(shù)據(jù)盤是新購買的,以前沒有用過沒有存儲(chǔ)過數(shù)據(jù),那么就要對(duì)其進(jìn)行格式化,使用命令。以下命令寫入新分區(qū)信息查看,出現(xiàn)以下信息就表示寫入成功。
轉(zhuǎn)載請(qǐng)注明出處 http://www.paraller.com
原文排版地址 點(diǎn)擊獲取更好閱讀體驗(yàn)
安裝docker Engine & docker-compose
Daoclound 安裝起步
配置/etc/docker/daemon.json
{ "registry-mirrors": [ "http://58f8b602.m.daocloud.io" ], "insecure-registries": ["docker.umiit.cn:5043"] } docker login -u "umiit" -p "***" docker.umiit.cn:5043
vim ~/.bash_profile export PS1="[u@`/sbin/ifconfig eth0 | sed -nr "s/.*inet (addr:)?(([0-9]*.){3}[0-9]*).*/2/p"` W centerServer! ]$ "aliyun ecs 掛載云盤
先購買一個(gè)云盤 500G大小
查看是否有一個(gè) /dev/xvdb 或者 數(shù)據(jù)盤大小與你要掛載一致的硬盤
Disk /dev/xvda: 107.4 GB, 107374182400 bytes 255 heads, 63 sectors/track, 13054 cylinders, total 209715200 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x000da36d Device Boot Start End Blocks Id System /dev/xvda1 * 2048 209713151 104855552 83 Linux Disk /dev/xvdb: 214.7 GB, 214748364800 bytes //重點(diǎn) 255 heads, 63 sectors/track, 26108 cylinders, total 419430400 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000 Disk /dev/xvdb doesn"t contain a valid partition table
fdisk /dev/xvdb ;對(duì)數(shù)據(jù)盤進(jìn)行分區(qū);根據(jù)提示,依次輸入“n”,“p”“1”,兩次回車,“wq”,分區(qū)就開始了,很快就會(huì)完成。
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel with disk identifier 0x5c273d61. Changes will remain in memory only, until you decide to write them. After that, of course, the previous content won"t be recoverable. Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite) Command (m for help): n Partition type: p primary (0 primary, 0 extended, 4 free) e extended Select (default p): p Partition number (1-4, default 1): 1 First sector (2048-419430399, default 2048): Using default value 2048 Last sector, +sectors or +size{K,M,G} (2048-419430399, default 419430399): Using default value 419430399 Command (m for help): wq The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.
fdisk -l 查看新的分區(qū)。新分區(qū) xvdb1 已經(jīng)創(chuàng)建好。如下面示例中的/dev/xvdb1
Disk /dev/xvda: 107.4 GB, 107374182400 bytes 255 heads, 63 sectors/track, 13054 cylinders, total 209715200 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x000da36d Device Boot Start End Blocks Id System /dev/xvda1 * 2048 209713151 104855552 83 Linux Disk /dev/xvdb: 214.7 GB, 214748364800 bytes 86 heads, 25 sectors/track, 195083 cylinders, total 419430400 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x5c273d61 Device Boot Start End Blocks Id System /dev/xvdb1 2048 419430399 209714176 83 Linux
你這個(gè)數(shù)據(jù)盤是新購買的,以前沒有用過(沒有存儲(chǔ)過數(shù)據(jù)),那么就要對(duì)其進(jìn)行格式化,使用 mkfs.ext3 /dev/xvdb1命令。
第二種,如果你之前就有數(shù)據(jù)盤,只是你把系統(tǒng)盤重置了,需要將數(shù)據(jù)盤再次掛載到重置后的系統(tǒng)上,那么就不要對(duì)其格式化(跳過此步驟),直接執(zhí)行后面的步驟掛載就可以了。
mke2fs 1.42.9 (4-Feb-2014) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks 13107200 inodes, 52428544 blocks 2621427 blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks=4294967296 1600 block groups 32768 blocks per group, 32768 fragments per group 8192 inodes per group Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872 Allocating group tables: done Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem accounting information: done
前提是你已經(jīng)創(chuàng)建了這個(gè)目錄(創(chuàng)建目錄的命令是mkdir)。以下命令寫入新分區(qū)信息
echo "/dev/xvdb1 /mnt ext3 defaults 0 0" >> /etc/fstab
查看,出現(xiàn)以下信息就表示寫入成功。
cat /etc/fstab UUID=af414ad8-9936-46cd-b074-528854656fcd / ext4 errors=remount-ro 0 1 /dev/xvdb /mnt ext3 defaults 0 0
使用mount -a掛載,df -h命令查看,出現(xiàn)以下信息就說明掛載成功,可以開始使用新的分區(qū)了。
df -h Filesystem Size Used Avail Use% Mounted on /dev/xvda1 20G 1.3G 18G 7% / none 4.0K 0 4.0K 0% /sys/fs/cgroup udev 2.0G 4.0K 2.0G 1% /dev tmpfs 396M 372K 395M 1% /run none 5.0M 0 5.0M 0% /run/lock none 2.0G 0 2.0G 0% /run/shm none 100M 0 100M 0% /run/user /dev/xvdb 99G 60M 94G 1% /mnt
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/7999.html
摘要:原文排版地址刪除的鏡像無效鏡像講解背景介紹在服務(wù)器上搭建了所有的構(gòu)建鏡像都會(huì)集中在一個(gè)服務(wù)器上,久而久之硬盤就被塞滿了。一是標(biāo)簽的鏡像,二是刪除物理鏡像。無效的鏡像另一種類型的鏡像是,這種類型會(huì)造成磁盤空間占用問題。 原文排版地址:刪除docker-register的鏡像& none無效鏡像講解 背景介紹 在服務(wù)器上搭建了docker registry,所有的構(gòu)建鏡像都會(huì)集中在一個(gè)服務(wù)...
1:節(jié)點(diǎn)準(zhǔn)備系統(tǒng):centos7.5以上,2核4G以上,30G硬盤以上系統(tǒng)參數(shù)配置:1)關(guān)閉swap,free -m; swapoff -a2)關(guān)閉防火墻 systemctl stop firewalld;systemctl status firewalld3)關(guān)閉selinux :vim /etc/selinux/config 修改disable臨時(shí)關(guān)閉setenforce 0查看selinxu...
服務(wù)器其實(shí)就是一臺(tái)配置更高的計(jì)算機(jī),它的內(nèi)部結(jié)構(gòu)也和普通的計(jì)算機(jī)大同小異。圖 1 所示為拆開蓋子后的 服務(wù)器內(nèi)部結(jié)構(gòu)圖?! 】梢钥吹?,服務(wù)器是由電源、CPU、內(nèi)存、硬盤、風(fēng)扇、光驅(qū)等幾部分構(gòu)成。本節(jié)將挑選一些重要的硬件,給大家做詳細(xì)介紹?! ‰娫础 ‰娫聪喈?dāng)于人體的心臟,需保障電力供應(yīng),如果要買服務(wù)器,應(yīng)選擇質(zhì)量好一點(diǎn)的電源。 另外需要注意的是,在實(shí)際使用場景中,如果只是配置一個(gè)服務(wù)...
一、前言我們常常見到很多比較棒的開源項(xiàng)目,但在本地安裝運(yùn)行的話就會(huì)很復(fù)雜,要配置不同的環(huán)境,安裝不同的依賴,好一點(diǎn)的會(huì)用docker直接拉取,或者打包好。這些無疑都會(huì)增加初學(xué)者上手的成本,所以這篇文章總結(jié)了下目前比較常用的解決方法之一:使用docker-compose同時(shí)管理多個(gè)服務(wù),只需要一行命令docker compose up -d,就可以啟動(dòng)一個(gè)包含后端項(xiàng)目、前端項(xiàng)目、數(shù)據(jù)庫的完整服務(wù)。而...
閱讀 3960·2021-09-22 10:02
閱讀 3377·2019-08-30 15:52
閱讀 3071·2019-08-30 12:51
閱讀 769·2019-08-30 11:08
閱讀 2071·2019-08-29 15:18
閱讀 3115·2019-08-29 12:13
閱讀 3605·2019-08-29 11:29
閱讀 1881·2019-08-29 11:13