Are the services managed by systemd implemented based on sockets?
Are all (or most) of the services managed by systemd (or sysvinit) implemented based on sockets (either internet or unix domain sockets)?
I have this question, because I am not sure what the concept "service" is. I guess it means a server that communicates with its clients via sockets?
Thanks.
systemd services
add a comment |
Are all (or most) of the services managed by systemd (or sysvinit) implemented based on sockets (either internet or unix domain sockets)?
I have this question, because I am not sure what the concept "service" is. I guess it means a server that communicates with its clients via sockets?
Thanks.
systemd services
No strictly defined concept. For systemd, it's the . service units, or say the corresponding runtime cgroups. Services are implemented all by their own, sockets may or may not be involved.
– 炸鱼薯条德里克
4 hours ago
add a comment |
Are all (or most) of the services managed by systemd (or sysvinit) implemented based on sockets (either internet or unix domain sockets)?
I have this question, because I am not sure what the concept "service" is. I guess it means a server that communicates with its clients via sockets?
Thanks.
systemd services
Are all (or most) of the services managed by systemd (or sysvinit) implemented based on sockets (either internet or unix domain sockets)?
I have this question, because I am not sure what the concept "service" is. I guess it means a server that communicates with its clients via sockets?
Thanks.
systemd services
systemd services
asked 4 hours ago
TimTim
27.9k78269486
27.9k78269486
No strictly defined concept. For systemd, it's the . service units, or say the corresponding runtime cgroups. Services are implemented all by their own, sockets may or may not be involved.
– 炸鱼薯条德里克
4 hours ago
add a comment |
No strictly defined concept. For systemd, it's the . service units, or say the corresponding runtime cgroups. Services are implemented all by their own, sockets may or may not be involved.
– 炸鱼薯条德里克
4 hours ago
No strictly defined concept. For systemd, it's the . service units, or say the corresponding runtime cgroups. Services are implemented all by their own, sockets may or may not be involved.
– 炸鱼薯条德里克
4 hours ago
No strictly defined concept. For systemd, it's the . service units, or say the corresponding runtime cgroups. Services are implemented all by their own, sockets may or may not be involved.
– 炸鱼薯条德里克
4 hours ago
add a comment |
1 Answer
1
active
oldest
votes
A systemd service is just something that systemd can run and manage. So, for example, systemd-firstboot.service
is a service that is started the first time after the system is installed, and it performs some configuration, then stops. systemd-fsck-root.service
will check the root disk on reboot. And so on.
A fair number of services act as servers (eg cups.service
) but not all.
From man systemd.service
A unit configuration file whose name ends in .service encodes
information about a process controlled and supervised by systemd.
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%2f507596%2fare-the-services-managed-by-systemd-implemented-based-on-sockets%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
A systemd service is just something that systemd can run and manage. So, for example, systemd-firstboot.service
is a service that is started the first time after the system is installed, and it performs some configuration, then stops. systemd-fsck-root.service
will check the root disk on reboot. And so on.
A fair number of services act as servers (eg cups.service
) but not all.
From man systemd.service
A unit configuration file whose name ends in .service encodes
information about a process controlled and supervised by systemd.
add a comment |
A systemd service is just something that systemd can run and manage. So, for example, systemd-firstboot.service
is a service that is started the first time after the system is installed, and it performs some configuration, then stops. systemd-fsck-root.service
will check the root disk on reboot. And so on.
A fair number of services act as servers (eg cups.service
) but not all.
From man systemd.service
A unit configuration file whose name ends in .service encodes
information about a process controlled and supervised by systemd.
add a comment |
A systemd service is just something that systemd can run and manage. So, for example, systemd-firstboot.service
is a service that is started the first time after the system is installed, and it performs some configuration, then stops. systemd-fsck-root.service
will check the root disk on reboot. And so on.
A fair number of services act as servers (eg cups.service
) but not all.
From man systemd.service
A unit configuration file whose name ends in .service encodes
information about a process controlled and supervised by systemd.
A systemd service is just something that systemd can run and manage. So, for example, systemd-firstboot.service
is a service that is started the first time after the system is installed, and it performs some configuration, then stops. systemd-fsck-root.service
will check the root disk on reboot. And so on.
A fair number of services act as servers (eg cups.service
) but not all.
From man systemd.service
A unit configuration file whose name ends in .service encodes
information about a process controlled and supervised by systemd.
answered 4 hours ago
Stephen HarrisStephen Harris
26.8k35181
26.8k35181
add a comment |
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%2f507596%2fare-the-services-managed-by-systemd-implemented-based-on-sockets%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
No strictly defined concept. For systemd, it's the . service units, or say the corresponding runtime cgroups. Services are implemented all by their own, sockets may or may not be involved.
– 炸鱼薯条德里克
4 hours ago