In WinCC OA Online Help has topic : Installation -> Linux -> WinCC OA as a Service
This topic has following description:
systemd Service File
During the rpm installation of WinCC OA the file /etc/systemd/system/winccoa@.service is created.
Can anyone please help us:
As per help this file should be there, but in my installtion it is not there.
What could be wrong happend during installation?
How could we get it?
Can you Post an standard example of this file?
Thanks.
WinCC OA 3.15 (P002): /etc/systemd/system/winccoa@.service does not exists.
- Harish
- Posts:13
- Joined: Fri Nov 11, 2016 8:39 am
WinCC OA 3.15 (P002): /etc/systemd/system/winccoa@.service does not exists.
- mkoller
- Posts:741
- Joined: Fri Sep 17, 2010 9:03 am
Re: WinCC OA 3.15 (P002): /etc/systemd/system/winccoa@.service does not exists.
This is a mistake in the documentation, since this functionality was only added for the next version 3.16.
But since the file is trivial, you can create it on your own with the following content:
But since the file is trivial, you can create it on your own with the following content:
Code: Select all
[Unit]
Description=WinCC OA project '%i'
[Service]
ExecStart=/bin/WCCILpmon -proj %i
ExecStop=/bin/WCCILpmon -proj %i -stopWait
#User=
[Install]
WantedBy=multi-user.target
- Harish
- Posts:13
- Joined: Fri Nov 11, 2016 8:39 am
Re: WinCC OA 3.15 (P002): /etc/systemd/system/winccoa@.service does not exists.
Thanks Martin.