반응형 SW/APM15 Rocky 9 APM설치 (Apache Mariadb PHP) - Mariadb Rocky 9 APM설치 Mariadb 설치 메뉴얼 1. 의존성 설치dnf install wget tar -y 2. MariaDB 설치wget https://archive.mariadb.org/mariadb-11.4.2/bintar-linux-systemd-x86_64/mariadb-11.4.2-linux-systemd-x86_64.tar.gz // 파일 다운로드tar -xfz mariadb-11.4.2-linux-systemd-x86_64.tar.gz // 압축 풀기mv mariadb-11.4.2-linux-systemd-x86_64 /usr/local/mysql // 파일 이동 3. 사용자 추가groupadd mysqluseradd -g mysql mysql -d /usr/local/mysql -s.. 2024. 10. 18. Centos7 APM 소스 설치 (mysql 5.1.73, Apache 2.4.6, PHP 5.4.16) 기본 라이브러리 설치yum install -y wget gcc gcc-c++ make cmakeyum install -y ca-certificatesyum install libtool-ltdl-devel -yyum install libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel -y APM 파일 다운로드cd /usr/local/srcwget https://sourceforge.net/projects/pcre/files/pcre/8.36/pcre-8.36.tar.gz/download //httpd 관련 파일wget https://dlcdn.apache.org/httpd/httpd-2.4.61.tar.gz //httpd 관련 파일.. 2024. 7. 4. Centos7 mysql - php 연동 확인 소스 코드 1. Centos7 mysql - php 연동 확인 소스 코드connect_errno) die("Connect failed: ".$db->connect_error); $result = $db->query("show databases;"); echo ""; while ($row = $result->fetch_object()) print_r($row); echo "";$result->close(); $db->close(); ?> 2.Centos7 mysql - php 연동 확인 소스 코드 "; $db = mysqli_connect("localhost", "root", "비밀번호", "DB"); if($db){ echo "connect : 성공";}else{ echo "disconnect.. 2024. 6. 13. 우분투 (Ubuntu) 22.04 nginx yum 설치 및 virtual host 설정 1. 업데이트 및 Nginx 설치 sudo apt update -y // 업데이트 sudo apt install nginx -y //niginx 설치 systemctl status nginx // nginx 상태확인 2. Nginx 시작 및 확인 systemctl start nginx // nginx 시작 netstat -tnlp // 포트 체크 3. Niginx 설치 확인 http://IP 4. Nginx Virtual Host 설정 cd /etc/nginx/sites-enabled // 경로 이동 vi domain.co.kr // 연결 도메인 폴더 생성 -> ex) vi bigju.co.kr 5. Virtual Host 작성 (bigju.co.kr 폴더) server { listen 80; liste.. 2023. 8. 22. 웹로그분석 Tool 설치, web log 확인(AWStats) OS : Centos 7.9 Tool : VMware 1. 설치 cd /usr/local/src wget http://prdownloads.sourceforge.net/awstats/awstats-6.9.tar.gz //필요한 파일 다운 tar xfz awstats*.tar.gz // 압축풀기 2. AWStats 설치 mv awstats-6.9 /usr/local/awstats chmod 755 /usr/local/awstats cd /usr/local/awstats/tools ./awstats_configure.pl *******-> httpd.conf 경로 (ex: /etc/httpd/conf/httpd.conf -> y -> 이름지정 (ex: www.bigju.com) -> /etc/awstats .. 2021. 10. 24. 이전 1 2 3 다음 반응형