Ubuntu Not Starting Second RAID Array Announcing the arrival of Valued Associate #679: Cesar...
How discoverable are IPv6 addresses and AAAA names by potential attackers?
Can a non-EU citizen traveling with me come with me through the EU passport line?
Can Pao de Queijo, and similar foods, be kosher for Passover?
Antler Helmet: Can it work?
Did Xerox really develop the first LAN?
What LEGO pieces have "real-world" functionality?
What is the musical term for a note that continously plays through a melody?
Does accepting a pardon have any bearing on trying that person for the same crime in a sovereign jurisdiction?
What would be the ideal power source for a cybernetic eye?
Letter Boxed validator
When to stop saving and start investing?
How do I stop a creek from eroding my steep embankment?
How much radiation do nuclear physics experiments expose researchers to nowadays?
Why was the term "discrete" used in discrete logarithm?
Is a manifold-with-boundary with given interior and non-empty boundary essentially unique?
If Jon Snow became King of the Seven Kingdoms what would his regnal number be?
How can I make names more distinctive without making them longer?
Right-skewed distribution with mean equals to mode?
Why is black pepper both grey and black?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
Why does Python start at index 1 when iterating an array backwards?
How do I keep my slimes from escaping their pens?
How to motivate offshore teams and trust them to deliver?
Should I use Javascript Classes or Apex Classes in Lightning Web Components?
Ubuntu Not Starting Second RAID Array
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Come Celebrate our 10 Year Anniversary!How do I get mdadm to auto assemble my raid array?Linux Raid: mystical md_d deviceubuntu raid problem - different arrays configured, defferent mountedSoftware MDADM RAID 5 - Inactive MD0 showingmdadm RAID 5 array stopped mountingOdd mdadm output: --examine shows array state failed, --detail shows everything cleanmdadm isn't rebuilding the arraySoftware RAID 1 does not extend on two new additional drivesHow to recover raid? mount: can't read superblockLinux RAID5 array error
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Before I start let me say that I am by no means an expert with this stuff, if you see something that you would have done differently let me know.
Ok, so I have a Ubuntu 18.04 server with a boot drive and 4 8T drives. My plan was to make 2 RAID 0 arrays, that would sync with rsync every night. I don't want to accidentally delete something forever so I decided to do the rsync route. I made my first array a couple of days ago, tested it, rebooted the server to make sure the settings stayed and then copied almost 3T of data to it.
I then went to make the second array, and that went great. However, whenever I reboot I have to rebuild the array by typing sudo mdadm --create --verbose /dev/md1 --level=0 --raid-devices=2 /dev/sda /dev/sde. Once I do that it mounts just like normal, but that deletes all the data on it. I tried sudo mdadm -A /dev/md1 and sudo mdadm --assemble --scan, neither one will bring the array up or say anything for that matter. mdstat also doesn't say that I have a drive /dev/md1
$ cat /proc/mdstat
Personalities : [raid0] [linear] [multipath] [raid1] [raid6] [raid5] [raid4] [raid10]
md0 : active raid0 sdb[0] sdd[1]
15627788288 blocks super 1.2 512k chunks
unused devices: <none>
Here is my mdadm.conf and fstab just in case
mdadm.conf
ARRAY /dev/md0 metadata=1.2 name=server-1:0 UUID=bc5145a0:d633e28a:940ddf09:7cfc2477
ARRAY /dev/md1 metadata=1.2 name=server-1:1 UUID=8a575273:38284856:a0a90411:41ef2a24
Fstab
/dev/md0 /mnt/Media ext4 defaults,nofail,discard 0 0
/dev/md1 /mnt/Backup ext4 defaults,nofail,discard 0 0
Any help will be greatly appreciated.
raid mdadm ubuntu-18.04 raid0
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Before I start let me say that I am by no means an expert with this stuff, if you see something that you would have done differently let me know.
Ok, so I have a Ubuntu 18.04 server with a boot drive and 4 8T drives. My plan was to make 2 RAID 0 arrays, that would sync with rsync every night. I don't want to accidentally delete something forever so I decided to do the rsync route. I made my first array a couple of days ago, tested it, rebooted the server to make sure the settings stayed and then copied almost 3T of data to it.
I then went to make the second array, and that went great. However, whenever I reboot I have to rebuild the array by typing sudo mdadm --create --verbose /dev/md1 --level=0 --raid-devices=2 /dev/sda /dev/sde. Once I do that it mounts just like normal, but that deletes all the data on it. I tried sudo mdadm -A /dev/md1 and sudo mdadm --assemble --scan, neither one will bring the array up or say anything for that matter. mdstat also doesn't say that I have a drive /dev/md1
$ cat /proc/mdstat
Personalities : [raid0] [linear] [multipath] [raid1] [raid6] [raid5] [raid4] [raid10]
md0 : active raid0 sdb[0] sdd[1]
15627788288 blocks super 1.2 512k chunks
unused devices: <none>
Here is my mdadm.conf and fstab just in case
mdadm.conf
ARRAY /dev/md0 metadata=1.2 name=server-1:0 UUID=bc5145a0:d633e28a:940ddf09:7cfc2477
ARRAY /dev/md1 metadata=1.2 name=server-1:1 UUID=8a575273:38284856:a0a90411:41ef2a24
Fstab
/dev/md0 /mnt/Media ext4 defaults,nofail,discard 0 0
/dev/md1 /mnt/Backup ext4 defaults,nofail,discard 0 0
Any help will be greatly appreciated.
raid mdadm ubuntu-18.04 raid0
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Before I start let me say that I am by no means an expert with this stuff, if you see something that you would have done differently let me know.
Ok, so I have a Ubuntu 18.04 server with a boot drive and 4 8T drives. My plan was to make 2 RAID 0 arrays, that would sync with rsync every night. I don't want to accidentally delete something forever so I decided to do the rsync route. I made my first array a couple of days ago, tested it, rebooted the server to make sure the settings stayed and then copied almost 3T of data to it.
I then went to make the second array, and that went great. However, whenever I reboot I have to rebuild the array by typing sudo mdadm --create --verbose /dev/md1 --level=0 --raid-devices=2 /dev/sda /dev/sde. Once I do that it mounts just like normal, but that deletes all the data on it. I tried sudo mdadm -A /dev/md1 and sudo mdadm --assemble --scan, neither one will bring the array up or say anything for that matter. mdstat also doesn't say that I have a drive /dev/md1
$ cat /proc/mdstat
Personalities : [raid0] [linear] [multipath] [raid1] [raid6] [raid5] [raid4] [raid10]
md0 : active raid0 sdb[0] sdd[1]
15627788288 blocks super 1.2 512k chunks
unused devices: <none>
Here is my mdadm.conf and fstab just in case
mdadm.conf
ARRAY /dev/md0 metadata=1.2 name=server-1:0 UUID=bc5145a0:d633e28a:940ddf09:7cfc2477
ARRAY /dev/md1 metadata=1.2 name=server-1:1 UUID=8a575273:38284856:a0a90411:41ef2a24
Fstab
/dev/md0 /mnt/Media ext4 defaults,nofail,discard 0 0
/dev/md1 /mnt/Backup ext4 defaults,nofail,discard 0 0
Any help will be greatly appreciated.
raid mdadm ubuntu-18.04 raid0
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Before I start let me say that I am by no means an expert with this stuff, if you see something that you would have done differently let me know.
Ok, so I have a Ubuntu 18.04 server with a boot drive and 4 8T drives. My plan was to make 2 RAID 0 arrays, that would sync with rsync every night. I don't want to accidentally delete something forever so I decided to do the rsync route. I made my first array a couple of days ago, tested it, rebooted the server to make sure the settings stayed and then copied almost 3T of data to it.
I then went to make the second array, and that went great. However, whenever I reboot I have to rebuild the array by typing sudo mdadm --create --verbose /dev/md1 --level=0 --raid-devices=2 /dev/sda /dev/sde. Once I do that it mounts just like normal, but that deletes all the data on it. I tried sudo mdadm -A /dev/md1 and sudo mdadm --assemble --scan, neither one will bring the array up or say anything for that matter. mdstat also doesn't say that I have a drive /dev/md1
$ cat /proc/mdstat
Personalities : [raid0] [linear] [multipath] [raid1] [raid6] [raid5] [raid4] [raid10]
md0 : active raid0 sdb[0] sdd[1]
15627788288 blocks super 1.2 512k chunks
unused devices: <none>
Here is my mdadm.conf and fstab just in case
mdadm.conf
ARRAY /dev/md0 metadata=1.2 name=server-1:0 UUID=bc5145a0:d633e28a:940ddf09:7cfc2477
ARRAY /dev/md1 metadata=1.2 name=server-1:1 UUID=8a575273:38284856:a0a90411:41ef2a24
Fstab
/dev/md0 /mnt/Media ext4 defaults,nofail,discard 0 0
/dev/md1 /mnt/Backup ext4 defaults,nofail,discard 0 0
Any help will be greatly appreciated.
raid mdadm ubuntu-18.04 raid0
raid mdadm ubuntu-18.04 raid0
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 1 min ago
Jacob LarsenJacob Larsen
1
1
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Jacob Larsen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Jacob Larsen is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f963207%2fubuntu-not-starting-second-raid-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Jacob Larsen is a new contributor. Be nice, and check out our Code of Conduct.
Jacob Larsen is a new contributor. Be nice, and check out our Code of Conduct.
Jacob Larsen is a new contributor. Be nice, and check out our Code of Conduct.
Jacob Larsen is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f963207%2fubuntu-not-starting-second-raid-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown