2015년 11월 26일 목요일

아파치 삭제

아파치 제거
아파치 삭제

확인

[root@zetawiki ~]# yum list httpd
...(생략)
Installed Packages
httpd.x86_64             2.2.15-15.el6.centos.1             @anaconda-CentOS-201207061011.x86_64/6.3
→ 리눅스 설치시에 httpd 2.2.15-15 버전이 같이 설치되었다.

삭제

[root@zetawiki ~]# yum remove httpd
... (생략)
====================================================================================================
 Package           Arch    Version                  Repository                                 Size
====================================================================================================
Removing:
 httpd             x86_64  2.2.15-15.el6.centos.1   @anaconda-CentOS-201207061011.x86_64/6.3  2.9 M
Removing for dependencies:
 gnome-user-share  x86_64  2.28.2-3.el6             @anaconda-CentOS-201207061011.x86_64/6.3  1.1 M
 
Transaction Summary
====================================================================================================
Remove        2 Package(s)
 
Installed size: 4.0 M
Is this ok [y/N]: y
... (생략)
Removed:
  httpd.x86_64 0:2.2.15-15.el6.centos.1                                                             
 
Dependency Removed:
  gnome-user-share.x86_64 0:2.28.2-3.el6                                                            
 
Complete!

확인 2

[root@zetawiki ~]# yum list installed httpd
... (생략)
Error: No matching 
 
 
원본 http://zetawiki.com/wiki/%EC%95%84%ED%8C%8C%EC%B9%98_%EC%82%AD%EC%A0%9C

댓글 없음:

댓글 쓰기

vsftpd FTP 서버 접속은 성공하였으나, "디렉토리 목록 조회 실패" 현상 발생시

FTP Passive 모드를 활성화 필요. 1. vsftpd 설정 변경 /etc/vsftpd/vsftpd.conf 상에 아래 내용 추가 기입 #passive modpasv_enable=YES pasv_min_port=5001 pasv...