목록systemd (2)
Keviny Blog
아래는 내가 tomcat 서비스를 systemd 에 서비스로 등록할 때 참고했던 사이트에서 발췌한 내용인데, 위 내용 중 tomcat.service 를 작성하는 부분에서 multi instance 를 위해 수정을 해야 한다. (tomcat 은 설치되어 있고, tomcat 유저는 생성해두었다고 가정한다) # Systemd unit file for tomcat [Unit] Description=Apache Tomcat Web Application Container After=syslog.target network.target [Service] Type=forking Environment="JAVA_HOME=/usr/java/jdk-10.0.1/" Environment="CATALINA_PID=/usr/loc..
CentOS 7부터는 이전에 사용하던 SysV(init system) 대신하여, systemd 을 system & service manager 로 사용합니다. Systemd is a system and service manager for Linux operating systems. It is designed to be backwards compatible with SysV init scripts, and provides a number of features such as parallel startup of system services at boot time, on-demand activation of daemons, or dependency-based service control logic. In Red..