Linux
-
Rocky Linux 9.1 x86_64 설치Linux 2023. 4. 14. 14:38
Rocky-9.1-x86_64-dvd.iso (구글 미러 속도 빠름) 최소 메모리 : 1 GB
-
Web(Httpd) – WAS(Tomcat) 연동 : mod_jkLinux 2023. 4. 11. 17:17
httpd-devel 패키지 설치 # dnf install httpd-devel # rpm -qa | grep httpd-devel httpd-devel-2.4.37-47.module+el8.6.0+14529+083145da.1.x86_64 * mod_jk 설치 http://tomcat.apache.org ==> Tomcat Connectors tomcat-connectors-1.2.48-src.tar.gz 다운로드 # cd /opt/ 압축풀기 # cd tomcat-connectors-1.2.48-src/native/ # wheris apxs apxs: /usr/bin/apxs /usr/share/man/man1/apxs.1.gz # ./configure --with-apxs=/usr/bin/apxs #..
-
WAS tomcatLinux 2023. 4. 11. 16:57
* JDK 설치 # rpm -qa | grep jdk # java -version # dnf install java-1.8.0-openjdk # java -version openjdk version "1.8.0_322" OpenJDK Runtime Environment (build 1.8.0_322-b06) OpenJDK 64-Bit Server VM (build 25.322-b06, mixed mode) * Tomcat 설치 # mv apache-tomcat-9.0.73.tar.gz /opt/ # cd /opt/ # tar xzf apache-tomcat-9.0.73.tar.gz # mv apache-tomcat-9.0.73/ tomcat # /opt/tomcat/bin/startup.sh Using ..
-
웹서버 Apache Httpd 설치Linux 2023. 4. 6. 14:05
# rpm -qa | grep httpd # dnf install httpd # systemctl start httpd # httpd -v Server version: Apache/2.4.53 (Red Hat Enterprise Linux) Server built: Jul 20 2022 00:00:00 # systemctl status httpd ● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled) Active: active (running) since Thu 2023-04-06 14:03:34 KST; 2s ago Docs:..
-
리눅스 설치 후 작업Linux 2023. 4. 5. 14:03
selinux off 시키기 확인 # sestatus disabled로 수정 # vi /etc/sysconfig/selinux # sestatus SELinux status: disabled iptables, ip6tables, firewalld 중지 시키기 iptables, ip6tables : ~ RHEL 7 이하 firewalld : RHEL 8 이상 서비스 중지 # systemctl stop iptables # systemctl stop ip6tables # systemctl stop firewalld 서비스 영구 비활성화 # systemctl disable iptables # systemctl disable ip6tables # systemctl disable firewalld 비활성화 확인 #..