drbd+nfs+heartbeat高可用

来源:http://www.cnblogs.com/deadly/archive/2017/08/17/7382624.html
-Advertisement-
Play Games

DRBD是一種基於軟體的、基於網路的塊複製存儲解決方案 DRBD在IP網路傳輸,所有在集中使用DRBD作為共用存儲設備,不需要任何硬體投資,可以節約很多成本 NFS1 IP1:10.10.10.166 心跳和數據傳輸網卡 不配置網關,添加路由即可 添加路由:route add -host IP de ...


DRBD是一種基於軟體的、基於網路的塊複製存儲解決方案

DRBD在IP網路傳輸,所有在集中使用DRBD作為共用存儲設備,不需要任何硬體投資,可以節約很多成本

 

 

NFS1

         IP1:10.10.10.166     心跳和數據傳輸網卡  不配置網關,添加路由即可

                            添加路由:route add -host IP dev eth0並且寫在rc.local內

         VIP:10.10.10.150

         DRBD至少使用兩個分區需要單獨分出來

NFS2

         IP1:10.10.10.167

         VIP:10.10.10.50

配置主機名、IP、hosts文件、關閉selinux、iptables

 

 

 

安裝drbd源

CentOS 7

yum install glibc* -y

# rpm --import http://elrepo.org/RPM-GPG-KEY-elrepo.org

# rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm

 

CentOS 6

rpm -Uvh elrepo-release-6-6.el6.elrepo.noarch.rpm

或者

rpm -Uvh http://www.elrepo.org/elrepo-release-6-6.el6.elrepo.noarch.rpm

配置阿裡雲源

         mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

        

         CentOS 6

 

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

 

CentOS 7

 

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

 

yum makecache

 

配置DRBD

         兩台主機分別磁碟分區

parted -s /dev/sdb mklabel gpt                                             #分區表轉換為GPT       

parted -s /dev/sdb mkpart primary 0% 80%

parted -s /dev/sdb mkpart primary 81% 100%                           

列印分區結果

[root@mfsmaster ~]# parted /dev/sdb p

Model: VMware, VMware Virtual S (scsi)

Disk /dev/sdb: 21.5GB

Sector size (logical/physical): 512B/512B

Partition Table: gpt

 

Number  Start   End     Size    File system  Name     標誌

 1      1049kB  17.2GB  17.2GB               primary

 2      17.4GB  21.5GB  4079MB               primary

        

 

 

安裝DRBD

 

分出兩個區,一個數據同步使用sdb1,一個記錄日誌sdb2

fdisk /dev/ddb

Command (m for help): n

Command action

   e   extended

   p   primary partition (1-4)

                                                                 p

artition number (1-4): 1

First cylinder (1-2610, default 1): 回車

Last cylinder, +cylinders or +size{K,M,G} (1305-2610, default 2610):+10G

Command (m for help): n

Command action

   e   extended

   p   primary partition (1-4)

                                                                 p

在執行執行一次分出sdb2  w保存分區                                          

 

升級內核yum install kernel kernel-devel kernel-headers -y

        

         yum install kmod-drbd83 drbd83 -y

        

         載入DRBD到內核

                   modprobe drbd

                   載入不成功執行depmod然後重啟

                   echo "modprobe drbd > /dev/null 2>&1" > /etc/sysconfig/modules/drbd.modules

         檢查是否安裝成功

                   lsmod | grep -i drbd

         查看drbd.ko安裝路徑

                   modprobe -l | grep -i drbd

         安裝成功之後drbd相關工具(drbdadm,drbdsetup)被安裝在/sbin/目錄下       

 

配置drbd

vim /etc/drbd.confi

#include "drbd.d/global_common.conf";

#include "drbd.d/*.res";

global {

        usage-count no;

}

common {

        syncer { rate 200M; }

}

resource nfsha {

        protocol C;

                   startup {

                 wfc-timeout 120;

                 degr-wfc-timeout 120;

        }

 

        net {

                cram-hmac-alg "sha1";

                shared-secret "nfs-ha";

        }

        

         disk {

                on-io-error detach;

                fencing resource-only;

        }

        device /dev/drbd0;

        on nfs1 {

                disk /dev/sdb1;

                address 10.10.10.166:7788;

                meta-disk internal;

        }

        on nfs2 {

                disk /dev/sdb1;

                address 10.10.10.167:7788;

                meta-disk internal;

        }

 

}

        

 

解釋:

global {

        usage-count no;  #允不允許官方統計

}

common {

        syncer {rate 200M; }                  //設置主備節點同步時速率的最大值單位是位元組

                  

}

resource r0 {                                                   //資源名稱

        protocol C;                                             //使用的協議

 

        handlers {

                # These are EXAMPLE handlers only.

                # They may have severe implications,

                # like hard resetting the node under certain circumstances.

                # Be careful when chosing your poison.

 

                 pri-on-incon-degr "/usr/lib/drbd/notify-pri-on-incon-degr.sh; /usr/lib/drbd/notify-emergency-reboot.sh; echo b > /proc/sysrq-trigger ; reboot -f";

                 pri-lost-after-sb "/usr/lib/drbd/notify-pri-lost-after-sb.sh; /usr/lib/drbd/notify-emergency-reboot.sh; echo b > /proc/sysrq-trigger ; reboot -f";

                 local-io-error "/usr/lib/drbd/notify-io-error.sh; /usr/lib/drbd/notify-emergency-shutdown.sh; echo o > /proc/sysrq-trigger ; halt -f";

                # fence-peer "/usr/lib/drbd/crm-fence-peer.sh";

                 split-brain "/usr/lib/drbd/notify-split-brain.sh root";

                 out-of-sync "/usr/lib/drbd/notify-out-of-sync.sh root";

                # before-resync-target "/usr/lib/drbd/snapshot-resync-target-lvm.sh -p 15 -- -c 16k";

                # after-resync-target /usr/lib/drbd/unsnapshot-resync-target-lvm.sh;

        }

 

        startup {

                 wfc-timeout 120;

                 degr-wfc-timeout 120;

        }

 

        net {

                cram-hmac-alg "sha1";   //DRBD同步時使用的驗證方式和密碼信息

                shared-secret "nfsha";

        }

        

         disk {                                                                                                                //使用dpod功能保證在數據不同步時不進行切換

                on-io-error detach;

                fencing resource-only;

        }

        device /dev/drbd0;

        on master-drbd {                                                                       //每個主機的說明以on開頭後面是hostname(與uname -n一樣)

                disk /dev/sdb1;                                                                 // drbd0使用的磁碟分區是/dev/sdb1

                address 192.168.100.10:7788;                          //

                meta-disk internal;                                                //DRBD的源數據存方式

        }

        on slave-drbd {

                disk /dev/sdb1;

                address 192.168.100.20:7788;

                meta-disk internal;

        }

 

}

 

 

複製配置信息到另一臺主機

 

啟動DRBD(同時)

         首先創建供DRBD記錄信息的數據塊

                   兩台主機分別執行drbdadm create-md nfsha或者drbdadm create-md all

                   啟動DRBD service drbd start

         查看節點狀態        

                   cat /proc/drbd

                   version: 8.3.16 (api:88/proto:86-97)

GIT-hash: a798fa7e274428a357657fb52f0ecf40192c1985 build by phil@Build64R6, 2014-11-24 14:51:37

 0: cs:Connected ro:Secondary/Secondary ds:Inconsistent/Inconsistent C r-----

    ns:0 nr:0 dw:0 dr:0 al:0 bm:0 lo:0 pe:0 ua:0 ap:0 ep:1 wo:f oos:5242684

        

         ro表示角色信息,第一次啟動時都為Secondary(備)狀態

         ds表示磁碟信息,Inconsistent表示磁碟數據不一致狀態

         ns表示網路發送的數據包信息

         dw表示磁碟寫信息

         dr表示磁碟讀信息

 

設置主用節點

         drbdsetup /dev/drbd0 primary -o

         drbdadm primary r0或者 drbdadm primary all

設置從 drbdadm secondary nfsha

啟動之後再次查看狀態        

         version: 8.3.16 (api:88/proto:86-97)

GIT-hash: a798fa7e274428a357657fb52f0ecf40192c1985 build by phil@Build64R6, 2014-11-24 14:51:37

 0: cs:SyncSource ro:Primary/Secondary ds:UpToDate/Inconsistent C r-----

    ns:4812800 nr:0 dw:0 dr:4813472 al:0 bm:293 lo:0 pe:0 ua:0 ap:0 ep:1 wo:f oos:429884

         [=================>..] sync'ed: 91.9% (416/5116)M

         finish: 0:00:10 speed: 40,304 (38,812) K/sec

        

sync'ed:同步進度

等待一段時間再次查看(同步時間可能很長)

         version: 8.3.16 (api:88/proto:86-97)

GIT-hash: a798fa7e274428a357657fb52f0ecf40192c1985 build by phil@Build64R6, 2014-11-24 14:51:37

 0: cs:Connected ro:Primary/Secondary ds:UpToDate/UpToDate C r-----

    ns:5242684 nr:0 dw:0 dr:5243356 al:0 bm:320 lo:0 pe:0 ua:0 ap:0 ep:1 wo:f oos:0

 

ds狀態變為UpToDate/UpToDate說明成功了

 

掛載DRBD設備

         mount只能用在主設備上,因此只要主設備才能格式化掛載。

         要在備設備上掛載,必須先卸載主,在升級備為主,然後再掛載

 

主設備進行格式化

         mkfs.ext4 /dev/drbd0

         tune2fs -c -1 /dev/drbd0

掛載

mkdir /data

         mount /dev/drbd0 /data

         關閉DRBD開機自啟動

測試

          dd if=/dev/zero of=/data/test.file bs=100M count=2

查看備用節點是否同步

         主操作

          umount /data

          drbdadm secondary all

        

         備用節點升級為主

          drbdadm primary nfsha

          mount /dev/drbd0 /data

          掛載查看是否含有test.file

          

          

 

 

安裝Heartbeat

配置vip

cd /etc/sysconfig/network-scripts/

cp ifcfg-eth0 ifcfg-eth0:0

 

DEVICE=eth0:0

ONBOOT=yes

IPADDR=10.10.10.50

NETMASK=255.255.255.255

 

yum install pam-devel -y

yum install python-devel -y

yum install gcc-c++ -y

yum install glib* -y

yum install libxslt* -y

yum install tkinter* -y

yum install elfutils* -y

yum install lm_sensors* -y

yum install perl-Compress* perl-libwww* perl-HTML* perl-XML* perl-Net* perl-IO* perl-Digest* -y

yum install bzip2* -y

yum install ncurses* -y

yum install imake* -y

yum install autoconf* -y

yum install flex -y

yum install beecrypt* -y

yum install net-snmp* -y

yum install perl-LDAP-0.40-1.el6.noarch.rpm -y

yum install perl-Parse-* perl-Mail-DKIM* -y

yum install libnet* -y

yum install openssl openssl-devel -y

 

tar xf libnet-1.1.2.1.tar.gz

cd libnet

./configure

make &&make install

cd ..

tar xf heartbeat-2.0.7.tar.gz

cd heartbeat-2.0.7

./ConfigureMe configure --enable-fatal-warnings=no --disable-swig --disable-snmp-subagent

./ConfigureMe make --enable-fatal-warnings=no || gmake

make install

 

 

cd /usr/share/doc/heartbeat-2.0.7/

cp ha.cf haresources authkeys /etc/ha.d/

cd /etc/ha.d/

 

 

設置heartbeat配置文件

(nfs1)

編輯ha.cf,添加下麵配置:

 

 

# vi /etc/ha.d/ha.cf

logfile         /var/log/ha-log

logfacility     local0

keepalive       2

deadtime        5

ucast           eth0 10.10.10.167    # 指定對方網卡及IP

auto_failback   off

node           nfs1 nfs2

 

(nfs2)

編輯ha.cf,添加下麵配置:

 

# vi /etc/ha.d/ha.cf

logfile         /var/log/ha-log

logfacility     local0

keepalive       2

deadtime        5

ucast           eth0 10.10.10.166

auto_failback   off

node            nfs1 nfs2

 

編輯雙機互聯驗證文件authkeys,添加以下內容:(node1,node2)

 

 

# vi /etc/ha.d/authkeys

auth 1

1 crc

給驗證文件600許可權

 

 

# chmod 600 /etc/ha.d/authkeys

編輯集群資源文件:(nfs1,nfs2)

 

 

# vi /etc/ha.d/haresources

nfs1 IPaddr::10.10.10.50/24/eth0 drbddisk::nfsha Filesystem::/dev/drbd0::/data::ext4 killnfsd

這裡ip為虛ip   註意網卡(eth0)資源名(nfsha)和掛載點(data)

註:該文件內IPaddr,Filesystem等腳本存放路徑在/etc/ha.d/resource.d/下,也可在該目錄下存放服務啟動腳本(例如:mysql,www),將相同腳本名稱添加到/etc/ha.d/haresources內容中,從而跟隨heartbeat啟動而啟動該腳本。

 

IPaddr::10.10.10.0/24/eth0:用IPaddr腳本配置對外服務的浮動虛擬IP

drbddisk::nfsha:用drbddisk腳本實現DRBD主從節點資源組的掛載和卸載

Filesystem::/dev/drbd0::/data::ext4:用Filesystem腳本實現磁碟掛載和卸載

 

編輯腳本文件killnfsd,用來重啟NFS服務:(node1,node2)

 

# vi /etc/ha.d/resource.d/killnfsd

killall -9 nfsd; /etc/init.d/nfs restart;exit 0

賦予755執行許可權:

 

 

chmod 755 /etc/ha.d/resource.d/killnfsd

 

創建DRBD腳本文件drbddisk:(nfs1,nfs2)

 

編輯drbddisk,添加下麵的腳本內容

 

 

# vi /etc/ha.d/resource.d/drbddisk

 

#!/bin/bash

#

# This script is inteded to be used as resource script by heartbeat

#

# Copright 2003-2008 LINBIT Information Technologies

# Philipp Reisner, Lars Ellenberg

#

###

 

DEFAULTFILE="/etc/default/drbd"

DRBDADM="/sbin/drbdadm"

 

if [ -f $DEFAULTFILE ]; then

 . $DEFAULTFILE

fi

 

if [ "$#" -eq 2 ]; then

 RES="$1"

 CMD="$2"

else

 RES="all"

 CMD="$1"

fi

 

## EXIT CODES

# since this is a "legacy heartbeat R1 resource agent" script,

# exit codes actually do not matter that much as long as we conform to

#  http://wiki.linux-ha.org/HeartbeatResourceAgent

# but it does not hurt to conform to lsb init-script exit codes,

# where we can.

#  http://refspecs.linux-foundation.org/LSB_3.1.0/

#LSB-Core-generic/LSB-Core-generic/iniscrptact.html

####

 

drbd_set_role_from_proc_drbd()

{

local out

if ! test -e /proc/drbd; then

ROLE="Unconfigured"

return

fi

 

dev=$( $DRBDADM sh-dev $RES )

minor=${dev#/dev/drbd}

if [[ $minor = *[!0-9]* ]] ; then

# sh-minor is only supported since drbd 8.3.1

minor=$( $DRBDADM sh-minor $RES )

fi

if [[ -z $minor ]] || [[ $minor = *[!0-9]* ]] ; then

ROLE=Unknown

return

fi

 

if out=$(sed -ne "/^ *$minor: cs:/ { s/:/ /g; p; q; }" /proc/drbd); then

set -- $out

ROLE=${5%/**}

: ${ROLE:=Unconfigured} # if it does not show up

else

ROLE=Unknown

fi

}

 

case "$CMD" in

   start)

# try several times, in case heartbeat deadtime

# was smaller than drbd ping time

try=6

while true; do

$DRBDADM primary $RES && break

let "--try" || exit 1 # LSB generic error

sleep 1

done

;;

   stop)

# heartbeat (haresources mode) will retry failed stop

# for a number of times in addition to this internal retry.

try=3

while true; do

$DRBDADM secondary $RES && break

# We used to lie here, and pretend success for anything != 11,

# to avoid the reboot on failed stop recovery for "simple

# config errors" and such. But that is incorrect.

# Don't lie to your cluster manager.

# And don't do config errors...

let --try || exit 1 # LSB generic error

sleep 1

done

;;

   status)

if [ "$RES" = "all" ]; then

   echo "A resource name is required for status inquiries."

   exit 10

fi

ST=$( $DRBDADM role $RES )

ROLE=${ST%/**}

case $ROLE in

Primary|Secondary|Unconfigured)

# expected

;;

*)

# unexpected. whatever...

# If we are unsure about the state of a resource, we need to

# report it as possibly running, so heartbeat can, after failed

# stop, do a recovery by reboot.

# drbdsetup may fail for obscure reasons, e.g. if /var/lock/ is

# suddenly readonly.  So we retry by parsing /proc/drbd.

drbd_set_role_from_proc_drbd

esac

case $ROLE in

Primary)

echo "running (Primary)"

exit 0 # LSB status "service is OK"

;;

Secondary|Unconfigured)

echo "stopped ($ROLE)"

exit 3 # LSB status "service is not running"

;;

*)

# NOTE the "running" in below message.

# this is a "heartbeat" resource script,

# the exit code is _ignored_.

echo "cannot determine status, may be running ($ROLE)"

exit 4 #  LSB status "service status is unknown"

;;

esac

;;

   *)

echo "Usage: drbddisk [resource] {start|stop|status}"

exit 1

;;

esac

 

exit 0

賦予755執行許可權:

 

 

 chmod 755 /etc/ha.d/resource.d/drbddisk

啟動HeartBeat服務

 

在兩個節點上啟動HeartBeat服務,先啟動node1:(node1,node2)

 

 

 service heartbeat start

現在從其他機器能夠ping通虛IP 192.168.0.190,表示配置成功

 

配置NFS:(nfs1,nfs2)

安裝nfs  yum install nfs-utils rpcbind

 

編輯exports配置文件,添加以下配置:

 

 

# vi /etc/exports

/data        *(rw,no_root_squash)

重啟NFS服務:

 

 

 

 

 

 service rpcbind restart

 service nfs restart

 chkconfig rpcbind on

 chkconfig nfs off

註:這裡設置NFS開機不要自動運行,因為/etc/ha.d/resource.d/killnfsd 該腳本會控制NFS的啟動。

 

五、測試高可用

 

1、正常熱備切換

在客戶端掛載NFS共用目錄

 

 

# mount -t nfs 192.168.0.190:/store /tmp

模擬將主節點node1 的heartbeat服務停止,則備節點node2會立即無縫接管;測試客戶端掛載的NFS共用讀寫正常。

 

此時備機node2上的DRBD狀態:

 

 

# service drbd status

drbd driver loaded OK; device status:

version: 8.4.3 (api:1/proto:86-101)

GIT-hash: 89a294209144b68adb3ee85a73221f964d3ee515 build by [email protected], 2015-05-12 21:05:41

m:res  cs         ro                 ds                 p  mounted     fstype

0:r0   Connected  Primary/Secondary  UpToDate/UpToDate  C  /store      ext4

異常宕機切換

強制關機,直接關閉node1電源

 

node2節點也會立即無縫接管,測試客戶端掛載的NFS共用讀寫正常。

 

此時node2上的DRBD狀態:

 

# service drbd status

drbd driver loaded OK; device status:

version: 8.4.3 (api:1/proto:86-101)

GIT-hash: 89a294209144b68adb3ee85a73221f964d3ee515 build by [email protected], 2015-05-12 21:05:41

m:res  cs         ro                 ds                 p  mounted     fstype

0:r0   Connected  Primary/Unknown    UpToDate/DUnknown  C  /store      ext4

 

 

nfs  heartbeat、drbd不要設置成開機自啟動

 

主宕機後先啟動drbd  然後再起的heartbeat

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 公司的測試環境和生產環境都是9.2.4版本,而開發環境是9.0.18版本。 PS: 不知道公司里的其它同事,是如何做資料庫遷移的,利用第三方可視化工具備份資料庫,然後恢復到其它高版本的環境?反正我沒成功過。 我是用cmd命令調用PostgreSQL的pg_dump+pgsql工具操作才成功的。 在自 ...
  • 題目:從 scott 用戶的 emp/dept 表中,找到“來自芝加哥最有錢的那個人”。 思路: 1、這個人來自芝加哥 2、這個人是最有錢的,而且是芝加哥最有錢的 分兩步查詢: 1、找出所有來自芝加哥的人 2、從來自芝加哥的人中找到最有錢的那個 :1、打開運行界面:window鍵+R-->輸入cmd ...
  • 示例效果: 為便於資料庫間的腳本移植, (如在開發庫和測試庫間進行腳本同步) 獲取某時間點後,資料庫增修的Triggers, 生成這些Triggers的創建腳本; 相關步驟: 1.通過SMSS 連接資料庫,打開一個SQL視窗; 2.右鍵該視窗 Results to -》Results to text ...
  • rm的悲劇總是發生在不經意之間,所以無論是在shell腳本中還是互動式bash環境下,執行rm命令時總應該三思三思再三思。也因此,很多人想盡辦法防止文件誤刪除,方法也各種各樣。 1.1 alias一般用法 預設rm是"rm -i"的別名,ll就是"ls -l"的別名。可以自定義別名來代替某些命令配合 ...
  • 使用的 Ubuntu Server 16.04 LTS 版本,伺服器托管在 Azure 上,用的 1 元試用 1 個月伺服器訂閱(1500 元額度)。 安裝命令(推薦使用): 也可以下載程式包進行安裝,程式包地址: 國內地址(只有 程式包): https://mirrors.tuna.tsinghu ...
  • 在配置好Linux靜態IP之後,確保能夠連接物理主機,記下Linux的IP地址。 PuTTY的使用 下載安裝PuTTY(完整安裝包putty.exe),官網地址 第一種方式:使用IP連接 1.打開PuTTY 2. 在Session選項里輸入需要連接的Linux的IP地址,port(埠22不變) 3 ...
  • 我是Linux初學者,做個筆記,以下是Linux幾個常用文件處理命令: 命令提示符 [root@localhost~]# 其中: root 表示當前登錄用戶 localhost 表示主機名 ~ 表示當前所在目錄(家目錄) # 表示超級用戶名的提示符 普通用戶的提示符是$ 查詢目中內容:ls ls [ ...
  • 壓縮、解壓縮及歸檔工具有很多,今天小編就整理幾個大家較為常用的。 compress gzip bzip2 xz zip tar cpio 一、壓縮、解壓工具 用法 壓縮 工具 壓縮後 壓縮包格式 解壓縮 (預設不保留源文件) 保留原文件壓縮 -c :將壓縮結果列印到屏幕上 保留壓縮文件解壓 *zca ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...