Summary
sudo apt-get update
sudo apt-get install -y vim ssh mysql-common mysql-server apache2 php5 php5-mysql
Network Setting
ftp Server
ssh Server
BIND DNS Server
|
APM Setup
sudo apt-get install mysql-common sudo apt-get install mysql-server sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install php5-mysql apache2 설정 파일 위치는 cd /etc/apache2/apache2.conf 이고, 동일 디렉토리에 각종 설정 파일들이 있습니다 sudo apache2ctl restart |
Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
라고 에러 메시지가 뜨면
vi /etc/apache2/httpd.conf 파일에
Servername localhost 란 내용을 추가 시켜주고 sudo apache2ctl restart를 다시 하면 됨
ftp Server
# apt-get install vsftpd # vi /etc/vsftpd.conf //설정 파일 위치 anonymous_enable=NO // 기본값이 YES 이므로 NO로 변경 local_enable=YES // 주석 제거 write_enable=YES // 주석 제거 ftpd_banner=Welcome to my FTP service // 주석 제거 및 각자 원하는 코멘트 입력 # /etc/init.d/vsftpd restart //데몬 재시작 # netstat -ntl //포트 확인 tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN |
ssh Server
# sudo apt-get install ssh # sudo gedit /etc/ssh/sshd_config // port 22 포트로 변경 가능 # sudo /etc/init.d/ssh restart // 데몬 재시작 # netstat -ntl //포트확인 |
BIND DNS Server
http://ulyssesonline.com/2007/11/07/how-to-setup-a-dns-server-in-ubuntu/
http://serverfault.com/questions/220974/bind9-dns-ubuntu-names-pingible-on-server-but-not-on-windows-machines
http://home.gotvv.com/thread-7681-1-1.html
http://lsm21c-textcube.blogspot.com/2009/08/%EC%9A%B0%EB%B6%84%ED%88%ACubuntu-bind-dns-%EB%8F%84%EB%A9%94%EC%9D%B8-%EB%93%B1%EB%A1%9D.html
http://serverfault.com/questions/220974/bind9-dns-ubuntu-names-pingible-on-server-but-not-on-windows-machines
http://home.gotvv.com/thread-7681-1-1.html
http://lsm21c-textcube.blogspot.com/2009/08/%EC%9A%B0%EB%B6%84%ED%88%ACubuntu-bind-dns-%EB%8F%84%EB%A9%94%EC%9D%B8-%EB%93%B1%EB%A1%9D.html
#named-checkzone mydomain.com mydomain.com.db
'컴터 때찌 > Experience' 카테고리의 다른 글
useradd + passwd (0) | 2010.12.04 |
---|---|
Adobe Flash Player 10.1.102.64 vul (0) | 2010.11.09 |
Local File Inclusion&Remote File Inclusion (0) | 2010.10.20 |
SQL injection을 방지하는 위해 사용하는 두가지 방법 (2) | 2010.09.17 |
mysql table 보기 (2) | 2010.09.15 |