리눅스 APM 설치
웹사이트 구축을 위해 APM 이 필요함.
yum 을 이용한 패키지 자동 설치를 진행.
# yum install -y httpd php mysql mysql-server gd gd-devel php-gd php-mysql
설치가 정상적으로 완료가 되었으면 아파치 실행.
# service httpd start
아파치 및 php 설정 수정 진행.
# vi /etc/httpd/conf/httpd.conf
:se nu
줄 번호 402 / index.php index.htm 추가
줄 번호 765 / 주석 제거
하단에 구문 추가
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
저장
# vi /etc/php.ini
줄 넘버 229 / short_open_tag = On
저장
아파치 재구동.
# service httpd restart
phpinfo 확인 할 수 있는 웹페이지 생성
# vi /var/www/html/index.php
<?
phpinfo()
?>
아파치 구동 및 php 활성화 확인
웹브라우저에서
ip입력/index.php
ex) 192.168.1.1/index.php
서버 구동시 아파치 자동 실행이 될 수 있도록 설정
# chkconfig httpd on
적용 확인
# chkconfig --list | grep httpd
httpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
'리눅스 공부' 카테고리의 다른 글
리눅스 ssh 접근 설정 (0) | 2018.02.07 |
---|---|
리눅스 접근 설정 iptables (0) | 2018.02.07 |
CentOS GUI 모드 구축 (0) | 2018.02.07 |
리눅스 nslookup 설치 (0) | 2018.02.07 |
리눅스 whois 설치 (0) | 2018.02.07 |
CentOS GUI 모드 구축
윈도우만 사용하다보니, GUI 환경에 익숙해져서 커맨드 입력만으로는 약간 어려움.
GUI 환경을 구축해보기로 함.
# yum groupinstall "X Window System" "KDE Desktop"
설치 완료 후 x window 를 실행.
# startx
에러 발생하면서 실행 실패.
(EE) no screens found(EE)
가상화 서버에 설치를 하였더니, 그래픽 지원이 안되서 그런거 같음.
vnc-server 를 설치해서 구동을 시키기로 함.
# yum install tigervnc-server -y
config 수정
# vi /etc/sysconfig/vncservers
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1600x900"
vncserver 접속 패스워드 설정
# vncpasswd
password: 신규 패스워드 입력
verify: 패스워드 다시 입력
vncserver 실행
# service vncserver start
Starting VNC server: 1:root xauth: (stdin):1: bad display name "www:1" in "add" command
New 'www:1 (root)' desktop is www:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/www:1.log
[ OK ]
서버 아이피 입력:포트
'리눅스 공부' 카테고리의 다른 글
리눅스 접근 설정 iptables (0) | 2018.02.07 |
---|---|
리눅스 APM 설치 (0) | 2018.02.07 |
리눅스 nslookup 설치 (0) | 2018.02.07 |
리눅스 whois 설치 (0) | 2018.02.07 |
CentOS 설치 후 업데이트 및 버전 확인 (0) | 2018.02.07 |
리눅스 nslookup 설치
서버에서 nslookup 명령어를 통해 특정 사이트의 DNS 정보를 확인하려고 했는데, 설치가 되어 있지 않아서 조회 불가.
설치 진행
# yum install bind-utils -y
# nsloookup naver.com
Non-authoritative answer:
Name: naver.com
Address: 210.89.164.90
Name: naver.com
Address: 125.209.222.142
Name: naver.com
Address: 210.89.160.88
Name: naver.com
Address: 125.209.222.141
'리눅스 공부' 카테고리의 다른 글
리눅스 APM 설치 (0) | 2018.02.07 |
---|---|
CentOS GUI 모드 구축 (0) | 2018.02.07 |
리눅스 whois 설치 (0) | 2018.02.07 |
CentOS 설치 후 업데이트 및 버전 확인 (0) | 2018.02.07 |
리눅스/유닉스 기본 명령어 (0) | 2018.02.07 |