nfs-kernel-server starts too earlyBuilding NFS Server to be world writableUnmount NFS shared drive without...
Counterfeit checks were created for my account. How does this type of fraud work?
60's (or earlier) sci-fi short story about two spacecrafts exchanging plants for gold and thinking they got the better of the exchange
Setting up the trap
Print the new site header
How to compute the inverse of an operation in Q#?
Are there examples of rowers who also fought?
How "fast" do astronomical events occur?
Predict the product from the reaction
Can I apply for a working holiday visa at age 30 and get the full 12 months?
What is the highest power supply a Raspberry pi 3 B can handle without getting damaged?
How to take photos with a yellowish tone and point-and-shoot film camera look?
What is this plant I saw for sale at a Romanian farmer's market?
Are intrusions within a foreign embassy considered an act of war?
How to write a nice frame challenge?
How is the idea of "girlfriend material" naturally expressed in Russian?
Leaving job close to major deadlines
In a list with unique pairs {A, B}, how can I sort them so that the last B is the first A in the next pair?
Time at 1 g acceleration to travel 100 000 light years
What mathematical theory is required for high frequency trading?
How do I find which software is doing an SSH connection?
Why is Havana covered in 5-digit numbers in Our Man in Havana?
What preparations would Hubble have needed to return in a Shuttle?
What does it cost to buy a tavern?
Why is it easier to balance a non-moving bike standing up than sitting down?
nfs-kernel-server starts too early
Building NFS Server to be world writableUnmount NFS shared drive without stopping nfs-kernel-serverNFS Mounts Wrong ShareUnderstanding NFS Server LoadKernel Boot over NFSHow to mount /run early enough?How to share hard disk with NFSCentos 7: network.service failed to start because systemd starts the daemon too earlynfs boot hangs after systemd-networkd startsWhat's the difference between `nfs-server` and `nfs-kernel-server`?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have an RPI-based NFS server with an external USB hard disk. After a recent upgrade to Raspbian 8.0 and systemd I noticed that now nfs-kernel-server seems to be starting before all file systems on the external disk are mounted:
Jun 29 12:01:33 nas nfs-kernel-server[369]: Exporting directories for NFS kernel daemon...exportfs: Failed to stat ▒▒▒▒▒▒▒▒▒▒(redacted): No such file or directory
The nfs-kernel-server has a sysV startup script in /etc/init.d
. I tried adding $local_fs
to the list of its requirements, but it did not help. I would really appreciate any suggestions on how to fix this.
(I also see smartd starting before the udev tree is fully populated, but I'll save that for another question.)
systemd nfs startup raspbian
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I have an RPI-based NFS server with an external USB hard disk. After a recent upgrade to Raspbian 8.0 and systemd I noticed that now nfs-kernel-server seems to be starting before all file systems on the external disk are mounted:
Jun 29 12:01:33 nas nfs-kernel-server[369]: Exporting directories for NFS kernel daemon...exportfs: Failed to stat ▒▒▒▒▒▒▒▒▒▒(redacted): No such file or directory
The nfs-kernel-server has a sysV startup script in /etc/init.d
. I tried adding $local_fs
to the list of its requirements, but it did not help. I would really appreciate any suggestions on how to fix this.
(I also see smartd starting before the udev tree is fully populated, but I'll save that for another question.)
systemd nfs startup raspbian
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I have an RPI-based NFS server with an external USB hard disk. After a recent upgrade to Raspbian 8.0 and systemd I noticed that now nfs-kernel-server seems to be starting before all file systems on the external disk are mounted:
Jun 29 12:01:33 nas nfs-kernel-server[369]: Exporting directories for NFS kernel daemon...exportfs: Failed to stat ▒▒▒▒▒▒▒▒▒▒(redacted): No such file or directory
The nfs-kernel-server has a sysV startup script in /etc/init.d
. I tried adding $local_fs
to the list of its requirements, but it did not help. I would really appreciate any suggestions on how to fix this.
(I also see smartd starting before the udev tree is fully populated, but I'll save that for another question.)
systemd nfs startup raspbian
I have an RPI-based NFS server with an external USB hard disk. After a recent upgrade to Raspbian 8.0 and systemd I noticed that now nfs-kernel-server seems to be starting before all file systems on the external disk are mounted:
Jun 29 12:01:33 nas nfs-kernel-server[369]: Exporting directories for NFS kernel daemon...exportfs: Failed to stat ▒▒▒▒▒▒▒▒▒▒(redacted): No such file or directory
The nfs-kernel-server has a sysV startup script in /etc/init.d
. I tried adding $local_fs
to the list of its requirements, but it did not help. I would really appreciate any suggestions on how to fix this.
(I also see smartd starting before the udev tree is fully populated, but I'll save that for another question.)
systemd nfs startup raspbian
systemd nfs startup raspbian
edited Jun 29 '15 at 6:51
G-Man
14.7k94175
14.7k94175
asked Jun 29 '15 at 6:20
kolbusakolbusa
163
163
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
In /etc/fstab
you can try to add x-systemd.before=nfs-kernel-server.service
as option to the mount maybe?
add a comment |
You could try to add a sleep
to the nfs-kernel-server
script.
Open up the script with:
$ sudo vim /etc/init.d/nfs-kernel-server
Scroll down and find the start()
section (it's usally under the first case
) and add a sleep for 30 seconds under start
:
sleep 30
Save and exit.
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
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%2funix.stackexchange.com%2fquestions%2f212785%2fnfs-kernel-server-starts-too-early%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In /etc/fstab
you can try to add x-systemd.before=nfs-kernel-server.service
as option to the mount maybe?
add a comment |
In /etc/fstab
you can try to add x-systemd.before=nfs-kernel-server.service
as option to the mount maybe?
add a comment |
In /etc/fstab
you can try to add x-systemd.before=nfs-kernel-server.service
as option to the mount maybe?
In /etc/fstab
you can try to add x-systemd.before=nfs-kernel-server.service
as option to the mount maybe?
edited Mar 24 '18 at 8:54
answered Mar 24 '18 at 8:40
BigonBigon
1,327713
1,327713
add a comment |
add a comment |
You could try to add a sleep
to the nfs-kernel-server
script.
Open up the script with:
$ sudo vim /etc/init.d/nfs-kernel-server
Scroll down and find the start()
section (it's usally under the first case
) and add a sleep for 30 seconds under start
:
sleep 30
Save and exit.
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
add a comment |
You could try to add a sleep
to the nfs-kernel-server
script.
Open up the script with:
$ sudo vim /etc/init.d/nfs-kernel-server
Scroll down and find the start()
section (it's usally under the first case
) and add a sleep for 30 seconds under start
:
sleep 30
Save and exit.
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
add a comment |
You could try to add a sleep
to the nfs-kernel-server
script.
Open up the script with:
$ sudo vim /etc/init.d/nfs-kernel-server
Scroll down and find the start()
section (it's usally under the first case
) and add a sleep for 30 seconds under start
:
sleep 30
Save and exit.
You could try to add a sleep
to the nfs-kernel-server
script.
Open up the script with:
$ sudo vim /etc/init.d/nfs-kernel-server
Scroll down and find the start()
section (it's usally under the first case
) and add a sleep for 30 seconds under start
:
sleep 30
Save and exit.
edited Jun 29 '15 at 7:59
answered Jun 29 '15 at 7:52
krtkrt
765510
765510
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
add a comment |
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
Thanks. That's will be the hack of the last resort. I did not loose hope yet to find a solution...
– kolbusa
Jun 29 '15 at 8:24
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f212785%2fnfs-kernel-server-starts-too-early%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