View
Ubuntu 서버 설치
01 우분투 설치를 위한 준비물
http://www.ubuntu.com/download/ubuntu/download
02 APM설치
# sudo apt-get install apache2
# sudo apt-get install libapache2-mod-auth-mysql
# sudo apt-get install mysql-server mysql-client
# sudo apt-get install php5-common php5 libapache2-mod-php5
# apt-get install php5-mysql
03 phpmyadmin 설치
# sudo apt-get install phpmyadmin
# sudo vi /etc/apache2/apache2.conf
# Enable PhpMyAdmin
Include /etc/phpmyadmin/apache.conf
04 FTP 설치
# sudo apt-get install vsftpd
# sudo vi /etc/vsftpd.conf
# sudo /etc/init.d/vsftpd restart
05 SSH설치
#sudo apt-get install openssh-server
# service ssh restart
06 기본적인 홈페이지 작성 방법과 작업 위치
<? phpinfo(); ?>
http://127.0.0.1/index.html
07 우분투 계정 할당 방법
# sudo adduser
# sudo cp /etc/apache2/mods-available/userdir.* /etc/apache2/mods-enabled/
08 우분투 홈디렉토리에서 .html파일에 php문법이 적용안되는 문제 해결
# sudo vi /etc/apache2/mods-enabled/mime.conf
AddType application/x-httpd-php .php .phtml .html .htm
# sudo /etc/init.d/apache2 restart
09. 우분투 홈디렉토리에서 php파일이 다운로드 되는 문제 해결법
# sudo vi /etc/apache2/mods-enabled/php5.conf
# sudo /etc/init.d/apache2 restart
'OS > Ubuntu' 카테고리의 다른 글
리눅스 디렉터리 구조 (0) | 2016.03.30 |
---|---|
리눅스 ZIP 파일 압축 해제시 한글 깨질 경우 (0) | 2016.03.29 |
Ubuntu에서 Kali 프로그램 사용하기 (0) | 2016.03.29 |
add-apt-repository command not found (0) | 2016.03.29 |
sudo 명령으로 root 권한 얻지 못할 때 (0) | 2016.03.23 |