http://www.rootda.org
FC6.txt (6.4 KB), Download : 10
Fedora Core 6
이전 버전들에 비해서 많이 깔끔해보인다.....
Fedora Core 6(x86_32) + DNS + sendmail + dovecot + APM(RPM) + APM(SOURCE COMPILE)
OS 최소 설치가 종료되면 시스템 업데이트
yum -y update
yum install vim-enhanced
터미널 한글입출력 지정
cat /etc/sysconfig/i18n
LANG="ko_KR.eucKR"
SUPPORTED="ko_KR.eucKR:ko_KR:ko"
SYSFONT="latarcyrheb-sun16"
네임서버 설정
yum -y install bind
yum -y install bind-chroot
cat /var/named/chroot/etc/named.conf
options {
version "RHCE.PE.KR";
directory "/var/named";
allow-transfer {
127.0.0.1;
};
allow-query { any; };
notify no;
};
logging {
//category queries { query-log; };
category lame-servers { null; };
category unmatched { null; };
category network { null; };
category notify { null; };
category update { null; };
};
/* a caching only nameserver config */
zone "." IN {
type hint;
file "named.ca";
};
/* local network configuration */
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
/* user level configuration */
zone "rhce.pe.kr" IN {
type master;
file "rhce.pe.kr.zone";
allow-update { none; };
};
zone "196.115.211.in-addr.arpa" IN {
type master;
file "rhce.pe.kr.rev";
allow-update { none; };
};
ln -s /var/named/chroot/etc/named.conf /etc/named.conf
chown root.named /var/named/chroot/etc/named.conf
cat /var/named/chroot/var/named/rhce.pe.kr.zone
$TTL 120
@ IN SOA ns.rhce.pe.kr. admin.rhce.pe.kr. (
2006110723 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
120 ) ; Minimum
IN NS ns.rhce.pe.kr.
IN NS ns2.rhce.pe.kr.
IN MX 10 mail.rhce.pe.kr.
IN TXT "v=spf1 mx ip4:211.115.196.37 -all"
IN A 211.115.196.37
@ IN A 211.115.196.37
ns IN A 211.115.196.37
ns2 IN A 211.115.196.37
mail IN A 211.115.196.37
www IN A 211.115.196.37
* IN A 211.115.196.37
cat /var/named/chroot/var/named/rhce.pe.kr.rev
$TTL 120
@ IN SOA ns.rhce.pe.kr. admin.rhce.pe.kr. (
2006110723 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
120 ) ; Minimum
IN NS ns.rhce.pe.kr.
IN NS ns2.rhce.pe.kr.
IN MX 10 mail.rhce.pe.kr.
IN TXT "v=spf1 mx ip4:211.115.196.37 -all"
37 IN PTR rhce.pe.kr.
/etc/init.d/named start
chkconfig --level 3 named on
센드메일 설정
yum -y install sendmail-cf
yum -y install dovecot
yum -y install cyrus-sasl*
vi /etc/mail/sendmail.mc
TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
DAEMON_OPTIONS(`Port=smtp,Addr=0.0.0.0, Name=MTA')dnl
echo rhce.pe.kr >> /etc/mail/local-host-names
cat /etc/mail/virtusertable
admin@rhce.pe.kr defcon3
webmaster@rhce.pe.kr defcon3
abuse@rhce.pe.kr defcon3
makemap hash /etc/mail/virtusertable < /etc/mail/virtusertable
chkconfig --level 3 sendmail on
dovecot 설정
vi /etc/dovecot.conf 에서는 protocols = imap, default_mail_env 지정
/etc/init.d/dovecot start
chkconfig --level 3 dovecot on
saslauthd 시작
/etc/init.d/saslauthd start
chkconfig --level 3 saslauthd on
APM(RPM) 설치
yum -y install mysql-server
mysql_install_db --user=mysql
/etc/init.d/mysqld start
chkconfig --level 3 mysqld on
yum -y install httpd*
/etc/init.d/httpd start
chkconfig --level 3 httpd on
yum -y install php
yum -y install php-imap php-gd libc-client php-mysql php-pear php-xml php-mbstring php-xmlrpc php-mhash php-mcrypt
이젠 APM(RPM)을 지우고... SOURCE로도 깔아볼까...
기본 라이브러리 설치
yum -y install gd gd-devel freetype freetype libpng libmng* libtiff* libjpeg* libc-client* giflib*
yum -y install ncurses*
yum -y install gcc-c++
yum -y install flex
yum -y install libxml*
yum -y install gdbm-devel
openssl 설치
./config --prefix=/usr/local --openssldir=/usr/local/openssl
make
make test
make install
MySQL 설치
./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data --with-charset=euckr --with-language=korean --with-mysql-user=mysql --with-extra-charsets=all;
make;
make install;
./scripts/mysql_install_db;
groupadd -g 400 mysql;
useradd -u400 -g400 -d /usr/local/mysql -s /sbin/nologin mysql;
chgrp -R mysql /usr/local/mysql;
chown -R mysql /usr/local/mysql/data;
cp support-files/my-huge.cnf /etc/my.cnf;
cp support-files/mysql.server /etc/init.d/mysqld;
chmod 755 /etc/init.d/mysqld;
chkconfig --level 3 mysqld on;
아파치 설치
./configure --prefix=/usr/local/apache --enable-shared=max --enable-rule=SHARED_CORE --enable-module=so --enable-ssl=shared --enable-ssl --with-ssl=/usr/local/openssl
make
make install
php 설치
./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache/bin/apxs --enable-sysvshm=yes --enable-sysvsem=yes --enable-debug=no --enable-track-vars=yes --enable-url-fopen-wrapper=yes --with-ttf --with-png-dir=/usr --with-zlib-dir --with-jpeg-dir=/usr --with-gdbm=/usr --enable-ftp --with-tiff-dir=/usr --enable-memory-limit --enable-mbstring --with-expat-dir=/usr --enable-sockets --enable-wddx --with-freetype-dir=/usr --enable-bcmath --enable-mbstr-enc-trans --enable-mbregex --enable-exif --with-gd --enable-gd-native-ttf --enable-gd-imgstrttf --enable-calendar --with-openssl=/usr/local/openssl
make
make install
openssl genrsa -des3 1024 > /usr/local/apache/conf/localhost.key
openssl req -new -key /usr/local/apache/conf/localhost.key > /usr/local/apache/conf/localhost.csr
openssl req -x509 -days 3650 -key /usr/local/apache/conf/localhost.key -in /usr/local/apache/conf/localhost.csr > /usr/local/apache/conf/localhost.crt
(2007-02-12 19:17:34)
./configure --prefix=/usr/local/apache2 --enable-module=so --enable-mods-shared=all --enable-rewrite --enable-ssl --with-ssl
[출처] http://cafe.naver.com/h4c
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 530 |
|
19년 전 | 1219 | |
| 529 |
|
19년 전 | 1395 | |
| 528 |
|
19년 전 | 1959 | |
| 527 |
사랑과우정
|
19년 전 | 2384 | |
| 526 | 19년 전 | 2858 | ||
| 525 |
|
19년 전 | 2289 | |
| 524 |
|
19년 전 | 1786 | |
| 523 | 19년 전 | 7018 | ||
| 522 |
|
19년 전 | 3708 | |
| 521 | 19년 전 | 2318 | ||
| 520 | 19년 전 | 2345 | ||
| 519 | 19년 전 | 2827 | ||
| 518 |
|
19년 전 | 5758 | |
| 517 |
|
19년 전 | 5536 | |
| 516 |
|
19년 전 | 2235 | |
| 515 |
|
19년 전 | 3276 | |
| 514 | 19년 전 | 2845 | ||
| 513 | 19년 전 | 2200 | ||
| 512 |
개발자관리자
|
19년 전 | 2713 | |
| 511 |
개발자관리자
|
19년 전 | 1565 | |
| 510 |
개발자관리자
|
19년 전 | 1721 | |
| 509 |
개발자관리자
|
19년 전 | 1814 | |
| 508 |
개발자관리자
|
19년 전 | 1989 | |
| 507 |
개발자관리자
|
19년 전 | 1666 | |
| 506 |
개발자관리자
|
19년 전 | 1795 | |
| 505 |
개발자관리자
|
19년 전 | 1763 | |
| 504 |
개발자관리자
|
19년 전 | 1832 | |
| 503 |
개발자관리자
|
19년 전 | 1510 | |
| 502 |
개발자관리자
|
19년 전 | 2631 | |
| 501 | 19년 전 | 1971 | ||
| 500 | 19년 전 | 3221 | ||
| 499 | 19년 전 | 3246 | ||
| 498 | 19년 전 | 2506 | ||
| 497 | 19년 전 | 2593 | ||
| 496 | 19년 전 | 2427 | ||
| 495 | 19년 전 | 2684 | ||
| 494 | 19년 전 | 2667 | ||
| 493 | 19년 전 | 3147 | ||
| 492 | 19년 전 | 2863 | ||
| 491 | 19년 전 | 5274 | ||
| 490 |
|
19년 전 | 2098 | |
| 489 |
|
19년 전 | 2183 | |
| 488 |
|
19년 전 | 1992 | |
| 487 |
|
19년 전 | 1922 | |
| 486 |
|
19년 전 | 1924 | |
| 485 |
|
19년 전 | 2116 | |
| 484 |
|
19년 전 | 3186 | |
| 483 |
|
19년 전 | 3059 | |
| 482 |
|
19년 전 | 2828 | |
| 481 |
|
19년 전 | 2528 | |
| 480 |
|
19년 전 | 2613 | |
| 479 |
|
19년 전 | 2276 | |
| 478 |
|
19년 전 | 2318 | |
| 477 |
개발자관리자
|
19년 전 | 1574 | |
| 476 |
개발자관리자
|
19년 전 | 2300 | |
| 475 |
개발자관리자
|
19년 전 | 2648 | |
| 474 |
개발자관리자
|
19년 전 | 2640 | |
| 473 |
개발자관리자
|
19년 전 | 2946 | |
| 472 | 19년 전 | 2724 | ||
| 471 | 19년 전 | 1695 | ||
| 470 | 19년 전 | 1804 | ||
| 469 |
|
19년 전 | 2704 | |
| 468 |
|
19년 전 | 2206 | |
| 467 |
|
19년 전 | 3968 | |
| 466 |
|
19년 전 | 2475 | |
| 465 | 19년 전 | 2361 | ||
| 464 | 19년 전 | 3507 | ||
| 463 |
|
19년 전 | 3081 | |
| 462 |
|
19년 전 | 2224 | |
| 461 |
|
19년 전 | 3015 | |
| 460 |
|
19년 전 | 2223 | |
| 459 |
|
19년 전 | 3080 | |
| 458 |
|
19년 전 | 3505 | |
| 457 |
|
19년 전 | 5193 | |
| 456 |
|
19년 전 | 3117 | |
| 455 |
스마일미디어
|
19년 전 | 3112 | |
| 454 |
스마일미디어
|
19년 전 | 2689 | |
| 453 |
스마일미디어
|
19년 전 | 2440 | |
| 452 |
스마일미디어
|
19년 전 | 2698 | |
| 451 |
스마일미디어
|
19년 전 | 2426 | |
| 450 |
스마일미디어
|
19년 전 | 2541 | |
| 449 |
스마일미디어
|
19년 전 | 2341 | |
| 448 |
스마일미디어
|
19년 전 | 2681 | |
| 447 | 19년 전 | 2949 | ||
| 446 |
스마일미디어
|
19년 전 | 3234 | |
| 445 |
스마일미디어
|
19년 전 | 7034 | |
| 444 |
스마일미디어
|
19년 전 | 5158 | |
| 443 |
스마일미디어
|
19년 전 | 2411 | |
| 442 |
스마일미디어
|
19년 전 | 5140 | |
| 441 |
스마일미디어
|
19년 전 | 3087 | |
| 440 |
|
19년 전 | 2436 | |
| 439 | 19년 전 | 2126 | ||
| 438 | 19년 전 | 3552 | ||
| 437 |
|
19년 전 | 2865 | |
| 436 |
|
19년 전 | 3242 | |
| 435 |
|
19년 전 | 2864 | |
| 434 | 19년 전 | 3368 | ||
| 433 |
sjsjin
|
19년 전 | 2689 | |
| 432 |
sjsjin
|
19년 전 | 3445 | |
| 431 |
sjsjin
|
19년 전 | 2401 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기