목록분류 전체보기 (3)
Keviny Blog
CentOS 7 VM 에서 HA Cluster 구성하기 (vSphere Hypervisor) 참고자료 : 1. RedHat 공식 고가용성 자료 (https://access.redhat.com/documentation/ko-kr/red_hat_enterprise_linux/7/html/high_availability_add-on_administration/index) 2. VMware 환경에서의 구성 관련 자료 (https://www.lisenet.com/2015/active-passive-cluster-with-pacemaker-corosync-and-drbd-on-centos-7-part-1/) - Part 1~4 중 Part 3은 DRBD(데이터 실시간 복제?) 관련 기능 -> 이 포스팅에선 필요하지..
아래는 내가 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..