ceph: cant separate osd public addr and cluster addr Unicorn Meta Zoo #1: Why another...
Is Diceware more secure than a long passphrase?
Is Bran literally the world's memory?
"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?
With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space
Second order approximation of the loss function (Deep learning book, 7.33)
"Rubric" as meaning "signature" or "personal mark" -- is this accepted usage?
Are all CP/M-80 implementations binary compatible?
Trumpet valves, lengths, and pitch
Why does the Cisco show run command not show the full version, while the show version command does?
How to not starve gigantic beasts
What's parked in Mil Moscow helicopter plant?
Expansion//Explosion and Siren Stormtamer
Is a 5 watt UHF/VHF handheld considered QRP?
What is the best way to deal with NPC-NPC combat?
What is a 'Key' in computer science?
How to avoid introduction cliches
Will I lose my paid in full property
The art of proof summarizing. Are there known rules, or is it a purely common sense matter?
How long after the last departure shall the airport stay open for an emergency return?
How to open locks without disable device?
Could Neutrino technically as side-effect, incentivize centralization of the bitcoin network?
Would reducing the reference voltage of an ADC have any effect on accuracy?
Retract an already submitted recommendation letter (written for an undergrad student)
Can you stand up from being prone using Skirmisher outside of your turn?
ceph: cant separate osd public addr and cluster addr
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
Come Celebrate our 10 Year Anniversary!Ceph OSD always 'down' in Ubuntu 14.04.1After initial deployment Ceph cluster stays in active+degraded stateceph osd down and rgw Initialization timeout, failed to initialize after rebootceph - can't start osd on rebooted cluster hostSlow fsync() with ceph (cephfs)Proxmox Ceph OSD FaultOn what network do the clients connect to the CEPH cluster (public/private)?RAID-0 stripe size for Ceph OSDCeph architecture for small HPC clusterceph-deploy osd create --data /dev/vdb fails
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have test cluster with nautilus 14.2. There is 3 servers installed with ceph-deploy and each has osd, mon, mgr daemons running. Also there is LXD cluster on top of them.
When doing heavy IO testing from LXD I noticed some weird "jumpy" behavior which I think is due network concurrency.
According to this http://docs.ceph.com/docs/master/rados/configuration/network-config-ref/
For this reason, we generally recommend that dual-NIC systems either be configured with two IPs on the same network, or bonded.
In my case 4nics 2x2 (bonds) br0 10.0.199.220 br1 10.0.199.221
Problem is I cant get OSD to work with two IPs. OSD either gets all ips from br0 or br1 interface, it seems like my configuration gets ignored somehow.
I tried multiple configurations, specifying cluster_network, not specifying it in [global], also same in [osd.x]. And always have same problem. I reloaded mon's restarted osds which I was configuring.
Tried:
ceph daemon osd.3 config get cluster_addr
returns "cluster_addr": "v2:10.0.199.221:0/0"
but when checked with ceph dashboard (and via lsof -i) actual IP is:
cluster_addr 10.0.199.220:6803/119398
whats worse osd.0 which isint even in ceph.conf got 10.0.199.221 I m really confused. I tried looking at logs but there was nothing with network or "addr".
Current test config (striped to network).
[global]
cluster_network = 10.0.199.0/24
public_network = 10.0.199.0/24
[osd.3]
public addr = 10.0.199.220
cluster addr = 10.0.199.221
ceph
New contributor
add a comment |
I have test cluster with nautilus 14.2. There is 3 servers installed with ceph-deploy and each has osd, mon, mgr daemons running. Also there is LXD cluster on top of them.
When doing heavy IO testing from LXD I noticed some weird "jumpy" behavior which I think is due network concurrency.
According to this http://docs.ceph.com/docs/master/rados/configuration/network-config-ref/
For this reason, we generally recommend that dual-NIC systems either be configured with two IPs on the same network, or bonded.
In my case 4nics 2x2 (bonds) br0 10.0.199.220 br1 10.0.199.221
Problem is I cant get OSD to work with two IPs. OSD either gets all ips from br0 or br1 interface, it seems like my configuration gets ignored somehow.
I tried multiple configurations, specifying cluster_network, not specifying it in [global], also same in [osd.x]. And always have same problem. I reloaded mon's restarted osds which I was configuring.
Tried:
ceph daemon osd.3 config get cluster_addr
returns "cluster_addr": "v2:10.0.199.221:0/0"
but when checked with ceph dashboard (and via lsof -i) actual IP is:
cluster_addr 10.0.199.220:6803/119398
whats worse osd.0 which isint even in ceph.conf got 10.0.199.221 I m really confused. I tried looking at logs but there was nothing with network or "addr".
Current test config (striped to network).
[global]
cluster_network = 10.0.199.0/24
public_network = 10.0.199.0/24
[osd.3]
public addr = 10.0.199.220
cluster addr = 10.0.199.221
ceph
New contributor
add a comment |
I have test cluster with nautilus 14.2. There is 3 servers installed with ceph-deploy and each has osd, mon, mgr daemons running. Also there is LXD cluster on top of them.
When doing heavy IO testing from LXD I noticed some weird "jumpy" behavior which I think is due network concurrency.
According to this http://docs.ceph.com/docs/master/rados/configuration/network-config-ref/
For this reason, we generally recommend that dual-NIC systems either be configured with two IPs on the same network, or bonded.
In my case 4nics 2x2 (bonds) br0 10.0.199.220 br1 10.0.199.221
Problem is I cant get OSD to work with two IPs. OSD either gets all ips from br0 or br1 interface, it seems like my configuration gets ignored somehow.
I tried multiple configurations, specifying cluster_network, not specifying it in [global], also same in [osd.x]. And always have same problem. I reloaded mon's restarted osds which I was configuring.
Tried:
ceph daemon osd.3 config get cluster_addr
returns "cluster_addr": "v2:10.0.199.221:0/0"
but when checked with ceph dashboard (and via lsof -i) actual IP is:
cluster_addr 10.0.199.220:6803/119398
whats worse osd.0 which isint even in ceph.conf got 10.0.199.221 I m really confused. I tried looking at logs but there was nothing with network or "addr".
Current test config (striped to network).
[global]
cluster_network = 10.0.199.0/24
public_network = 10.0.199.0/24
[osd.3]
public addr = 10.0.199.220
cluster addr = 10.0.199.221
ceph
New contributor
I have test cluster with nautilus 14.2. There is 3 servers installed with ceph-deploy and each has osd, mon, mgr daemons running. Also there is LXD cluster on top of them.
When doing heavy IO testing from LXD I noticed some weird "jumpy" behavior which I think is due network concurrency.
According to this http://docs.ceph.com/docs/master/rados/configuration/network-config-ref/
For this reason, we generally recommend that dual-NIC systems either be configured with two IPs on the same network, or bonded.
In my case 4nics 2x2 (bonds) br0 10.0.199.220 br1 10.0.199.221
Problem is I cant get OSD to work with two IPs. OSD either gets all ips from br0 or br1 interface, it seems like my configuration gets ignored somehow.
I tried multiple configurations, specifying cluster_network, not specifying it in [global], also same in [osd.x]. And always have same problem. I reloaded mon's restarted osds which I was configuring.
Tried:
ceph daemon osd.3 config get cluster_addr
returns "cluster_addr": "v2:10.0.199.221:0/0"
but when checked with ceph dashboard (and via lsof -i) actual IP is:
cluster_addr 10.0.199.220:6803/119398
whats worse osd.0 which isint even in ceph.conf got 10.0.199.221 I m really confused. I tried looking at logs but there was nothing with network or "addr".
Current test config (striped to network).
[global]
cluster_network = 10.0.199.0/24
public_network = 10.0.199.0/24
[osd.3]
public addr = 10.0.199.220
cluster addr = 10.0.199.221
ceph
ceph
New contributor
New contributor
New contributor
asked 1 min ago
wolaswolas
1
1
New contributor
New contributor
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
});
}
});
wolas 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%2f964519%2fceph-cant-separate-osd-public-addr-and-cluster-addr%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
wolas is a new contributor. Be nice, and check out our Code of Conduct.
wolas is a new contributor. Be nice, and check out our Code of Conduct.
wolas is a new contributor. Be nice, and check out our Code of Conduct.
wolas 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%2f964519%2fceph-cant-separate-osd-public-addr-and-cluster-addr%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