###### MySQL 6 Install ########
[root@sunny♥泰用哲學♥/temp]# wget ftp://ftp.sayclub.com/pub/mysql/Downloads/MySQL-6.0/mysql-6.0.10-alpha.tar.gz
[root@sunny♥泰用哲學♥/temp]# tar xvfzp mysql-6.0.10-alpha.tar.gz
[root@sunny♥泰用哲學♥/temp]# mkdir -p /usr/local/mysql_data
[root@sunny♥泰用哲學♥/temp]# useradd -M -r -d /usr/local/mysql_data -s /bin/bash -c "MySQL Server" -u 27 mysql
[root@sunny♥泰用哲學♥/temp]# rm -fr /usr/local/mysql_data
[root@sunny♥泰用哲學♥/temp]# cd mysql-6.0.10-alpha
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql_data \
--sysconfdir=/etc --disable-shared --with-mysqld-user=mysql --with-innodb --without-isam --without-debug \
--with-unix-socket-path=/usr/local/mysql_data/mysql.sock --with-charset=utf8
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# make
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# make install
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# install -m 644 ./include/my_config.h /usr/local/mysql/include/mysql
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# cd support-files
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# cp my-medium.cnf /etc/my.cnf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown root:sys /etc/my.cnf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 644 /etc/my.cnf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# /usr/local/mysql/bin/mysql_install_db
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown -R root:mysql /usr/local/mysql
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown -R mysql:mysql /usr/local/mysql_data
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ln -s /usr/local/mysql/bin/mysql /usr/local/sbin/
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ln -s /usr/local/mysql/bin/mysqldump /usr/local/sbin/
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ln -s /usr/local/mysql/bin/mysqladmin /usr/local/sbin/
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 700 /usr/local/mysql/bin/mysqladmin
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 700 /usr/local/mysql/bin/mysqldump
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# strip /usr/local/mysql/libexec/mysqld
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# echo "/usr/local/mysql/lib/mysql" >> /etc/ld.so.conf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ldconfig
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# cp -ab mysql.server /etc/init.d/dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 700 /etc/init.d/dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown root:root /etc/init.d/dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chkconfig --add dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chkconfig --level 3 dbServer on
내가 6.0을 설치하면서 이런 경우는 처음인데 pid 파일 에러가 나는 상황을 보고 한참 생각 하다가 결국
해결을 했는데 왜 이런 에러가 5.3버전 이후로 많이 발생하는지 정확히 모르겠다.
해결 방법은 다음과 같이 해 주면 실행 된다.
[root@sunny♥泰用哲學♥/etc]# vi my.cnf ==> 열어서
다음 구문 옵션을 주석처리해 준다.
skip-federated ==> #skip-federated 처리해 주고 저장한다.
기존해 생성했던 데이타베이스 파일을 모두 지우고 다시 생성해 준다.
[root@sunny♥泰用哲學♥/etc]# rm -fr /usr/local/mysql_data/*
[root@sunny♥泰用哲學♥/etc]# /usr/local/mysql/bin/mysql_install_db --user=mysql
[root@sunny♥泰用哲學♥/etc]# service dbServer start
Starting MySQL. SUCCESS! ==> OK
[root@sunny♥泰用哲學♥/etc]# ps aux | grep mysql
..0:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql_data --pid-file=/usr/local/mysql_data/xxx.xxxxx.com.pid
..0:00 /usr/local/mysql/libexec/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql_data --user=mysql --log-error=/usr/local/mysql_data/xxx.xxxxxx.com --pid-file=/usr/local/mysql_data/xxx.xxxxxx.com.pid --socket=/usr/local/mysql_data/mysql.sock --port=3306
==> 이렇게 나와야 한다.
#### APACHE 2 Install #####
[root@sunny♥泰用哲學♥/temp]# tar xvfjp httpd-2.2.6.tar.bz2
[root@sunny♥泰用哲學♥/temp]# cd httpd-2.2.6
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# SSL_BASE=/usr/local ./configure --prefix=/usr/local/apache2 \
--sysconfdir=/usr/local/etc --enable-module=so --enable-rule=SHARED_CORE --enable-module=ssl \
--enable-ssl=shared --with-mpm=prefork --enable-shared=max --enable-module=all
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# make
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# make install
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# cd support
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# cp apachectl /etc/init.d/webserver2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# vi /etc/init.d/webserver2
# Comments to support chkconfig on RedHat Linux
# chkconfig: 2345 90 90
# description: A very fast and reliable WebServer engine. ==> 입력
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# chkconfig --add webserver2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# chkconfig --level 3 webserver2 on
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# chmod 700 /etc/init.d/webserver2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/apachectl /usr/local/sbin/apachectl2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/httpd /usr/local/sbin/httpd2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/htpasswd /usr/local/sbin/htpasswd2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/apxs /usr/local/sbin/apxs2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# service webserver2 start
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ps aux | grep httpd
root 16690 0.0 0.2 8988 1860 ? Ss 21:00 0:00 /usr/local/apache2/bin/httpd -k start
daemon 16705 0.0 0.1 8988 1380 ? S 21:00 0:00 /usr/local/apache2/bin/httpd -k start ...
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# nmap -sS -O -v localhost | grep 80
80/tcp open http ==> 설정 완료
#### PHP 5 Install ######
[root@sunny♥泰用哲學♥/temp]# cd php-5.1.2
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ./configure --prefix=/usr/local/php2 --with-apxs2=/usr/local/apache2/bin/apxs
--with-config-file-path=/usr/local/php2 --with-mysql=/usr/local/mysql --with-mysql-sock=/usr/local/mysql_data/mysql.sock
--with-gd --with-gd-dir=/usr/local/ --with-jpeg-dir=/usr --with-png --with-freetype-dir=/usr --with-mod_charset
--with-language=korean --with-charset=euc_kr --with-gdbm --with-xml --with-regex=php --with-iconv --enable-module=so
--enable-memory-limit --enable-track-vars --enable-ftp --enable-sockets --enable-trans-sid --enable-magic-quotes
--enable-sysvsem --enable-sysvshm --enable-mailparse --enable-sigchild --enable-calender --enable-inline-optimization
--disable-debug --enable-mbstring --with-gettext --with-zlib-dir=/usr/local
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# make ; make install
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# cp php.ini-dist /usr/local/php2/php.ini
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ln -s /usr/local/php2/bin/php /usr/local/sbin/php2
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ln -s /usr/local/php2/bin/phpize /usr/local/sbin/phpize2
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ls -al /usr/local/apache2/modules
-rwxr-xr-x 1 root root 16585979 4월 3 21:50 libphp5.so
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# vi /usr/local/etc/httpd/httpd.conf
LoadModule php5_module modules/libphp5.so
<IfModule dir_module>
DirectoryIndex DirectoryIndex index.html index.htm start.htm index.mht INDEX.MHT INDEX.HTML
index.php INDEX.HTM INDEX.PHP INDEX.JSP index.jsp
</IfModule>
####### ============== PHP 5 확장자 설정 ============== ###########
AddType application/x-tar .tgz
AddType application/x-httpd-php .php4 .php3 .php .htm .html .phtml .ph .inc
AddType application/x-httpd-php-source .phps
##################################################################
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# service webserver2 restart
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# cd /usr/local/apache2/htdocs/
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# vi index.php
<? phpinfo(); ?>
==> http://localhost ==> 정보가 나오면 확인해 본다.
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# php2 -v
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies ==> 정상적인 출력
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# yum -y install lynx
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# lynx http://localhost
PHP Logo
PHP Version 5.1.2
System Linux xxx.xxxxxxxx.com 2.6.18-164.15.1.el5 #1 SMP Wed Mar 17 11:37:14 EDT 2010 i686...... 생략.
==> 콘솔 상태에서 web으로 접속해 폐이지를 볼수있는 프로그램이다.
[root@sunny♥泰用哲學♥/temp]# wget ftp://ftp.sayclub.com/pub/mysql/Downloads/MySQL-6.0/mysql-6.0.10-alpha.tar.gz
[root@sunny♥泰用哲學♥/temp]# tar xvfzp mysql-6.0.10-alpha.tar.gz
[root@sunny♥泰用哲學♥/temp]# mkdir -p /usr/local/mysql_data
[root@sunny♥泰用哲學♥/temp]# useradd -M -r -d /usr/local/mysql_data -s /bin/bash -c "MySQL Server" -u 27 mysql
[root@sunny♥泰用哲學♥/temp]# rm -fr /usr/local/mysql_data
[root@sunny♥泰用哲學♥/temp]# cd mysql-6.0.10-alpha
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql_data \
--sysconfdir=/etc --disable-shared --with-mysqld-user=mysql --with-innodb --without-isam --without-debug \
--with-unix-socket-path=/usr/local/mysql_data/mysql.sock --with-charset=utf8
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# make
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# make install
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# install -m 644 ./include/my_config.h /usr/local/mysql/include/mysql
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha]# cd support-files
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# cp my-medium.cnf /etc/my.cnf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown root:sys /etc/my.cnf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 644 /etc/my.cnf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# /usr/local/mysql/bin/mysql_install_db
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown -R root:mysql /usr/local/mysql
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown -R mysql:mysql /usr/local/mysql_data
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ln -s /usr/local/mysql/bin/mysql /usr/local/sbin/
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ln -s /usr/local/mysql/bin/mysqldump /usr/local/sbin/
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ln -s /usr/local/mysql/bin/mysqladmin /usr/local/sbin/
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 700 /usr/local/mysql/bin/mysqladmin
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 700 /usr/local/mysql/bin/mysqldump
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# strip /usr/local/mysql/libexec/mysqld
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# echo "/usr/local/mysql/lib/mysql" >> /etc/ld.so.conf
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# ldconfig
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# cp -ab mysql.server /etc/init.d/dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chmod 700 /etc/init.d/dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chown root:root /etc/init.d/dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chkconfig --add dbServer
[root@sunny♥泰用哲學♥/temp/mysql-6.0.10-alpha/support-files]# chkconfig --level 3 dbServer on
내가 6.0을 설치하면서 이런 경우는 처음인데 pid 파일 에러가 나는 상황을 보고 한참 생각 하다가 결국
해결을 했는데 왜 이런 에러가 5.3버전 이후로 많이 발생하는지 정확히 모르겠다.
해결 방법은 다음과 같이 해 주면 실행 된다.
[root@sunny♥泰用哲學♥/etc]# vi my.cnf ==> 열어서
다음 구문 옵션을 주석처리해 준다.
skip-federated ==> #skip-federated 처리해 주고 저장한다.
기존해 생성했던 데이타베이스 파일을 모두 지우고 다시 생성해 준다.
[root@sunny♥泰用哲學♥/etc]# rm -fr /usr/local/mysql_data/*
[root@sunny♥泰用哲學♥/etc]# /usr/local/mysql/bin/mysql_install_db --user=mysql
[root@sunny♥泰用哲學♥/etc]# service dbServer start
Starting MySQL. SUCCESS! ==> OK
[root@sunny♥泰用哲學♥/etc]# ps aux | grep mysql
..0:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql_data --pid-file=/usr/local/mysql_data/xxx.xxxxx.com.pid
..0:00 /usr/local/mysql/libexec/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql_data --user=mysql --log-error=/usr/local/mysql_data/xxx.xxxxxx.com --pid-file=/usr/local/mysql_data/xxx.xxxxxx.com.pid --socket=/usr/local/mysql_data/mysql.sock --port=3306
==> 이렇게 나와야 한다.
#### APACHE 2 Install #####
[root@sunny♥泰用哲學♥/temp]# tar xvfjp httpd-2.2.6.tar.bz2
[root@sunny♥泰用哲學♥/temp]# cd httpd-2.2.6
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# SSL_BASE=/usr/local ./configure --prefix=/usr/local/apache2 \
--sysconfdir=/usr/local/etc --enable-module=so --enable-rule=SHARED_CORE --enable-module=ssl \
--enable-ssl=shared --with-mpm=prefork --enable-shared=max --enable-module=all
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# make
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# make install
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6]# cd support
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# cp apachectl /etc/init.d/webserver2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# vi /etc/init.d/webserver2
# Comments to support chkconfig on RedHat Linux
# chkconfig: 2345 90 90
# description: A very fast and reliable WebServer engine. ==> 입력
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# chkconfig --add webserver2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# chkconfig --level 3 webserver2 on
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# chmod 700 /etc/init.d/webserver2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/apachectl /usr/local/sbin/apachectl2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/httpd /usr/local/sbin/httpd2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/htpasswd /usr/local/sbin/htpasswd2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ln -s /usr/local/apache2/bin/apxs /usr/local/sbin/apxs2
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# service webserver2 start
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# ps aux | grep httpd
root 16690 0.0 0.2 8988 1860 ? Ss 21:00 0:00 /usr/local/apache2/bin/httpd -k start
daemon 16705 0.0 0.1 8988 1380 ? S 21:00 0:00 /usr/local/apache2/bin/httpd -k start ...
[root@sunny♥泰用哲學♥/temp/httpd-2.2.6/support]# nmap -sS -O -v localhost | grep 80
80/tcp open http ==> 설정 완료
#### PHP 5 Install ######
[root@sunny♥泰用哲學♥/temp]# cd php-5.1.2
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ./configure --prefix=/usr/local/php2 --with-apxs2=/usr/local/apache2/bin/apxs
--with-config-file-path=/usr/local/php2 --with-mysql=/usr/local/mysql --with-mysql-sock=/usr/local/mysql_data/mysql.sock
--with-gd --with-gd-dir=/usr/local/ --with-jpeg-dir=/usr --with-png --with-freetype-dir=/usr --with-mod_charset
--with-language=korean --with-charset=euc_kr --with-gdbm --with-xml --with-regex=php --with-iconv --enable-module=so
--enable-memory-limit --enable-track-vars --enable-ftp --enable-sockets --enable-trans-sid --enable-magic-quotes
--enable-sysvsem --enable-sysvshm --enable-mailparse --enable-sigchild --enable-calender --enable-inline-optimization
--disable-debug --enable-mbstring --with-gettext --with-zlib-dir=/usr/local
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# make ; make install
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# cp php.ini-dist /usr/local/php2/php.ini
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ln -s /usr/local/php2/bin/php /usr/local/sbin/php2
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ln -s /usr/local/php2/bin/phpize /usr/local/sbin/phpize2
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# ls -al /usr/local/apache2/modules
-rwxr-xr-x 1 root root 16585979 4월 3 21:50 libphp5.so
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# vi /usr/local/etc/httpd/httpd.conf
LoadModule php5_module modules/libphp5.so
<IfModule dir_module>
DirectoryIndex DirectoryIndex index.html index.htm start.htm index.mht INDEX.MHT INDEX.HTML
index.php INDEX.HTM INDEX.PHP INDEX.JSP index.jsp
</IfModule>
####### ============== PHP 5 확장자 설정 ============== ###########
AddType application/x-tar .tgz
AddType application/x-httpd-php .php4 .php3 .php .htm .html .phtml .ph .inc
AddType application/x-httpd-php-source .phps
##################################################################
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# service webserver2 restart
[root@sunny♥泰用哲學♥/temp/php-5.1.2]# cd /usr/local/apache2/htdocs/
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# vi index.php
<? phpinfo(); ?>
==> http://localhost ==> 정보가 나오면 확인해 본다.
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# php2 -v
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies ==> 정상적인 출력
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# yum -y install lynx
[root@sunny♥泰用哲學♥/usr/local/apache2/htdocs]# lynx http://localhost
PHP Logo
PHP Version 5.1.2
System Linux xxx.xxxxxxxx.com 2.6.18-164.15.1.el5 #1 SMP Wed Mar 17 11:37:14 EDT 2010 i686...... 생략.
==> 콘솔 상태에서 web으로 접속해 폐이지를 볼수있는 프로그램이다.
'🌟2017년 이전 포스팅 모음 🌟 > 💞Linux OS💞' 카테고리의 다른 글
portsentry 설치와 설정 (0) | 2011.05.14 |
---|---|
XP 마운틴 한글 지원 설정 (0) | 2011.05.14 |
ncftp 설치와 사용방법 (0) | 2011.05.14 |
<CentOS5> 시스템 업그레이드 하기 및 최적화 유지 (0) | 2011.05.14 |
PHP 버전별 컴파일 설치 내용 (0) | 2011.05.14 |