|
導(dǎo)讀網(wǎng)絡(luò)技術(shù)是從1990年代中期發(fā)展起來的新技術(shù),它把互聯(lián)網(wǎng)上分散的資源融為有機整體,實現(xiàn)資源的全面共享和有機協(xié)作,使人們能夠透明地使用資源的整體能力并按需獲取信息。資源包括高性能計算機、存儲資源、數(shù)據(jù)... 網(wǎng)絡(luò)技術(shù)是從1990年代中期發(fā)展起來的新技術(shù),它把互聯(lián)網(wǎng)上分散的資源融為有機整體,實現(xiàn)資源的全面共享和有機協(xié)作,使人們能夠透明地使用資源的整體能力并按需獲取信息。資源包括高性能計算機、存儲資源、數(shù)據(jù)資源、信息資源、知識資源、專家資源、大型數(shù)據(jù)庫、網(wǎng)絡(luò)、傳感器等。 當(dāng)前的互聯(lián)網(wǎng)只限于信息共享,網(wǎng)絡(luò)則被認(rèn)為是互聯(lián)網(wǎng)發(fā)展的第三階段。 四、修改pam [root@localhost pam_mysql]# cd /etc/pam.d [root@localhost pam.d]# cp /work/postfix postfix [root@localhost pam.d]# postfix的內(nèi)容如下: ##########/etc/pam.d/postfix################## echo auth sufficient pam_mysql.so user=postfix passwd=postfix host=localhost db=postfix table=mailbox usercolumn=username passwdcolumn=password crypt=1 echo account required pam_mysql.so user=postfix passwd=postfix host=localhost db=postfix table=mailbox usercolumn=username passwdcolumn=password crypt=1 echo auth sufficient pam_unix_auth.so echo account sufficient pam_unix_acct.so [root@localhost pam.d]# [ -f imap ] && mv imap imap.orig [root@localhost pam.d]# [ -f pop ] && mv pop pop.orig [root@localhost pam.d]# [ -f smtp ] && mv smtp smtp.orig [root@localhost pam.d]# n -s postfix imap bash: n: command not found [root@localhost pam.d]# ln -s postfix imap [root@localhost pam.d]# ln -s postfix pop [root@localhost pam.d]# ln -s postfix smtp [root@localhost pam.d]# cp postfix sieve [root@localhost pam.d]# cd .. | 五、cyrus-sasl的安裝配置 我本不想重新編譯cyrus-sasl的,可是fedora自帶的在我測試的時候出問題,還是重編譯吧,雖然fedora帶的也是2.1.15版本。 [root@localhost etc]# cd /ruanjian [root@localhost ruanjian]# cd cyrus-sasl-2.1.15 [root@localhost cyrus-sasl-2.1.15]# ./configure --disable-sample \ > --disable-pwcheck --disable-gssapi --disable-cram \ > --disable-digest --disable-krb4 --disable-anon \ > --with-saslauthd=/var/run/saslauthd \ > --enable-plain --enable-login [root@localhost cyrus-sasl-2.1.15]# [ -d /usr/lib/sasl2 ] && mv /usr/lib/sasl2 /usr/lib/sasl2.orig [root@localhost cyrus-sasl-2.1.15]# ln -s /usr/local/lib/sasl2 /usr/lib/sasl2 [root@localhost cyrus-sasl-2.1.15]# echo /usr/local/lib >> /etc/ld.so.conf [root@localhost cyrus-sasl-2.1.15]# echo /usr/local/lib/sasl2 >> /etc/ld.so.conf [root@localhost cyrus-sasl-2.1.15]# ldconfig [root@localhost cyrus-sasl-2.1.15]# [root@localhost cyrus-sasl-2.1.15]# echo pwcheck_method: saslauthd > /usr/lib/sasl2/smtpd.conf [root@localhost cyrus-sasl-2.1.15]# /usr/local/sbin/saslauthd -a pam [root@localhost cyrus-sasl-2.1.15]# | 六、postfix的安裝和配置 A.先停止sendmail.fedora已經(jīng)默認(rèn)安裝了sendmail,去掉它。 [root@localhost ruanjian]# /etc/init.d/sendmail stop 關(guān)閉 sendmail: [失敗] [root@localhost ruanjian]# mv /usr/bin/newaliases /usr/bin/newaliases.orig [root@localhost ruanjian]# mv /usr/bin/mailq /usr/bin/mailq.orig [root@localhost ruanjian]# mv /usr/sbin/sendmail /usr/sbin/sendmail.orig | B.添加用戶和組 [root@localhost ruanjian]# groupadd -g 12345 postfix [root@localhost ruanjian]# groupadd -g 12346 postdrop [root@localhost ruanjian]# useradd -u 12345 -g 12345 -c postfix -d /dev/null -s /nologin postfix | C.編譯postfix [root@mail ruanjian]# cd postfix-2.0.16 [root@mail postfix-2.0.16]# make -f Makefile.init makefiles \ > 'CCARGS=-DUSE_SASL_AUTH -DHAS_MYSQL -I/usr/include/mysql -I/usr/include/sasl' \ > 'AUXLIBS=-L/usr/lib/mysql -L/usr/local/lib/sasl2 -lmysqlclient -lsasl2 -lz -lm' [root@mail postfix-2.0.16]# make install [root@localhost postfix-2.0.16]# cd /etc [root@localhost etc]# mv aliases aliases.orig [root@localhost etc]# ln -s postfix/aliases aliases [root@localhost etc]# cd postfix [root@localhost postfix]# echo 'root: tester' >> /etc/postfix/aliases [root@localhost postfix]# postalias /etc/postfix/aliases [root@localhost postfix]# | |
|
網(wǎng)絡(luò)的神奇作用吸引著越來越多的用戶加入其中,正因如此,網(wǎng)絡(luò)的承受能力也面臨著越來越嚴(yán)峻的考驗―從硬件上、軟件上、所用標(biāo)準(zhǔn)上......,各項技術(shù)都需要適時應(yīng)勢,對應(yīng)發(fā)展,這正是網(wǎng)絡(luò)迅速走向進步的催化劑。
|