본문 바로가기

리눅스

RackTable 설치 방법(Installing RackTables)

반응형

RackTable 설치 방법(Installing RackTables)

RackTables는 데이터 센터 자산 관리 시스템으로, 서버, 스위치, 라우터, 패치 패널 등의 네트워크 기반 자산을 관리할 수 있습니다.

사전 요구 사항

RackTables를 설치하기 전에, 웹 서버와 데이터베이스 서버가 설치되어 있어야 합니다. 일반적으로 Apache 웹 서버와 MySQL 또는 MariaDB 데이터베이스 서버가 사용됩니다.

Installing Apache with PHP Support

yum -y install wget unzip automake libtool openssl-devel gcc
yum -y install httpd
yum -y install mysql mysql-server
service mysqld start
Set root password? [Y/n] y
New password:password_input
Re-enter new password:password_input
Remove anonymous users? [Y/n] y
Disallow root login remotely? [Y/n] y
Remove test database and access to it? [Y/n] y
Reload privilege tables now? [Y/n] y
yum -y install php-devel php-common php-cli php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-mbstring php-bcmath php-snmp php-pcntl php-xmlprc

Installing RackTables

랙테이블 데이터베이스 생성

mysql -u root p
CREATE DATABASE racktables_db CHARACTER SET utf8;
GRANT ALL PRIVILEGES ON racktables_db.* TO ‘racktables_user’@’localhost’ IDENTIFIED BY 'racktables_pw';
FLUSH PRIVILEGES;
exit

애플리케이션 다운로드 및 배포

tar xvfz RackTables-0.20.10.tar.gz
cd RackTables-0.20.10

설치 단계

cp -rf wwwroot /var/www/html/racktables
touch /var/www/html/racktables/inc/secret.php
chmod 666 /var/www/html/racktables/inc/secret.php

웹 브라우저

http://서버IP/racktables/?module=installer

데이터베이스 정보 삽입

  • Server : localhost
  • Port : 3306
  • Database Name : racktables_db
  • Username : rackuser_user
  • Password : rackuser_pw

설치에 동의하고 계속 진행

chown apache:apache /var/www/html/racktables/inc/secret.php
chmod 400 /var/www/html/racktables/inc/secret.php

 

참고URL

- extensions : https://github.com/RackTables/racktables-contribs/tree/master/extensions

- full_row_view : https://github.com/RackTables/racktables-contribs/tree/master/full_row_view

 

728x90
반응형