1.安裝tcl
wget
tar zvxf tcl8.5.12-src.tar.gz
cd tcl8.5.12
cd unix
./configure
make
make install
3.解壓
tar xvf krb5-1.10.3-signed.tar
tar zvxf krb5-1.10.3.tar.gz
cd krb5-1.10.3
3.編譯
./configure --enable-dns-for-realm --with-tcl=/usr/local/lib/tcl8.5
增加對dns 和tcl支援。
make
make check
make install
4.時間校對
crontab中配置時間校對(服務端、客戶端時間不一致無法連線)
0-59/10 * * * * /usr/sbin/ntpdate us.pool.ntp.org
5,配置/etc/krb5.conf檔案
6.配置/usr/local/var/krb5kdc/kdc.conf
可以從/usr/local/share/examples/krb5/kdc.conf 複製乙份。
7,建立資料庫
系統新增使用者useradd devk
1)kadmin.local 中檢視使用者
listprincs
2)kadmin.local 中新增使用者
8,重啟krb5kdc和kadmind程序
/usr/local/sbin/kadmind
/usr/local/sbin/krb5kdc
9,配置服務端/etc/hosts
socket伺服器端
伺服器 include winsock2.h include string.h include stdio.h include time.h include stdarg.h include stdlib.h pragma comment lib,ws2 32 void errexit const ...
C tcp伺服器端
伺服器端 include stdafx.h include winsock2.h pragma comment lib,ws2 32.lib include using namespace std int tmain int argc,char ar 建立套接字 sserver socket af ...
伺服器端架構
摘自於某位大神ppt 一 技術架構的演變及使用場景 tip 中數字是指併發量 二 架構優化之路 三 現主要針對負載均衡問題進行討論 負載均衡問題 使用者的請求由誰來 到具體的應用伺服器 有什麼 的演算法 應用伺服器如何返回使用者的請求 使用者如果每次訪問到的伺服器不一樣,那麼如何維護sesion的一...