Systemd service not starting python program
service for my raspberry pi security camera which is being run when I start my pi but the file I set to run is not starting as best I can tell. I have set this up on another pi which is configured almost exactly the same but this one is not working. Code is as follows filename=camfeed.service
[Unit]
Description=CameraLoopProgram
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=pi
ExecStart=/usr/bin/python /home/pi/python/MotionDetectionRepeat.py > /home/pi/python/cameralog.log 2>&1
[Install]
WantedBy=multi-user.target
I have used chmod 644 on the file and sudo systemctl daemon-reload and sudo systemctl enable to start the file on bootup and the service shows up as enable when listing services.
server python services
add a comment |
service for my raspberry pi security camera which is being run when I start my pi but the file I set to run is not starting as best I can tell. I have set this up on another pi which is configured almost exactly the same but this one is not working. Code is as follows filename=camfeed.service
[Unit]
Description=CameraLoopProgram
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=pi
ExecStart=/usr/bin/python /home/pi/python/MotionDetectionRepeat.py > /home/pi/python/cameralog.log 2>&1
[Install]
WantedBy=multi-user.target
I have used chmod 644 on the file and sudo systemctl daemon-reload and sudo systemctl enable to start the file on bootup and the service shows up as enable when listing services.
server python services
Have you looked indmesg
to check if the service fails to load?
– Minty
2 hours ago
Just saved dmesg to a file and do not see anything related to the service.
– kwjamesblond
1 hour ago
Which release (of Ubuntu) are you running? and is it the same as the the other pi where it works?
– guiverc
1 hour ago
Yes it is a typo I am using raspbian jessie.
– kwjamesblond
53 mins ago
add a comment |
service for my raspberry pi security camera which is being run when I start my pi but the file I set to run is not starting as best I can tell. I have set this up on another pi which is configured almost exactly the same but this one is not working. Code is as follows filename=camfeed.service
[Unit]
Description=CameraLoopProgram
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=pi
ExecStart=/usr/bin/python /home/pi/python/MotionDetectionRepeat.py > /home/pi/python/cameralog.log 2>&1
[Install]
WantedBy=multi-user.target
I have used chmod 644 on the file and sudo systemctl daemon-reload and sudo systemctl enable to start the file on bootup and the service shows up as enable when listing services.
server python services
service for my raspberry pi security camera which is being run when I start my pi but the file I set to run is not starting as best I can tell. I have set this up on another pi which is configured almost exactly the same but this one is not working. Code is as follows filename=camfeed.service
[Unit]
Description=CameraLoopProgram
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=pi
ExecStart=/usr/bin/python /home/pi/python/MotionDetectionRepeat.py > /home/pi/python/cameralog.log 2>&1
[Install]
WantedBy=multi-user.target
I have used chmod 644 on the file and sudo systemctl daemon-reload and sudo systemctl enable to start the file on bootup and the service shows up as enable when listing services.
server python services
server python services
edited 56 mins ago
kwjamesblond
asked 2 hours ago
kwjamesblondkwjamesblond
42
42
Have you looked indmesg
to check if the service fails to load?
– Minty
2 hours ago
Just saved dmesg to a file and do not see anything related to the service.
– kwjamesblond
1 hour ago
Which release (of Ubuntu) are you running? and is it the same as the the other pi where it works?
– guiverc
1 hour ago
Yes it is a typo I am using raspbian jessie.
– kwjamesblond
53 mins ago
add a comment |
Have you looked indmesg
to check if the service fails to load?
– Minty
2 hours ago
Just saved dmesg to a file and do not see anything related to the service.
– kwjamesblond
1 hour ago
Which release (of Ubuntu) are you running? and is it the same as the the other pi where it works?
– guiverc
1 hour ago
Yes it is a typo I am using raspbian jessie.
– kwjamesblond
53 mins ago
Have you looked in
dmesg
to check if the service fails to load?– Minty
2 hours ago
Have you looked in
dmesg
to check if the service fails to load?– Minty
2 hours ago
Just saved dmesg to a file and do not see anything related to the service.
– kwjamesblond
1 hour ago
Just saved dmesg to a file and do not see anything related to the service.
– kwjamesblond
1 hour ago
Which release (of Ubuntu) are you running? and is it the same as the the other pi where it works?
– guiverc
1 hour ago
Which release (of Ubuntu) are you running? and is it the same as the the other pi where it works?
– guiverc
1 hour ago
Yes it is a typo I am using raspbian jessie.
– kwjamesblond
53 mins ago
Yes it is a typo I am using raspbian jessie.
– kwjamesblond
53 mins ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
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%2faskubuntu.com%2fquestions%2f1119698%2fsystemd-service-not-starting-python-program%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
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1119698%2fsystemd-service-not-starting-python-program%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
Have you looked in
dmesg
to check if the service fails to load?– Minty
2 hours ago
Just saved dmesg to a file and do not see anything related to the service.
– kwjamesblond
1 hour ago
Which release (of Ubuntu) are you running? and is it the same as the the other pi where it works?
– guiverc
1 hour ago
Yes it is a typo I am using raspbian jessie.
– kwjamesblond
53 mins ago