MySQL多實例安裝教程

来源:https://www.cnblogs.com/www233ii/archive/2019/11/19/11892027.html
-Advertisement-
Play Games

MySQL的多實例 [toc] 實驗準備: 準備階段: 1. 準備文件目錄 2. 更改所有者所屬組 實驗階段 1. 分別創建資料庫並確認資料庫文件都生成了,再查看所有者所屬組是否正確。 2. 準備配置文件 3. 設置服務啟動腳本(只有多實例安裝需要自己手寫腳本其他安裝都是自動生成的) 4. 試啟動3 ...


目錄

MySQL的多實例

實驗準備:

1. 一個乾凈的centos7系統
2. 關閉防火牆和selinux
3. 之前已經二進位安裝過的MySQL資料庫
4. 準備文件夾

準備階段:

  1. 準備文件目錄
[root@centos7 data]#mkdir -pv /mysql/{3306,3307,3308}/{data,etc,socket,log,bin,pid}
mkdir: created directory ‘/mysql’
mkdir: created directory ‘/mysql/3306’
mkdir: created directory ‘/mysql/3306/data’
mkdir: created directory ‘/mysql/3306/etc’
mkdir: created directory ‘/mysql/3306/socket’
mkdir: created directory ‘/mysql/3306/log’
mkdir: created directory ‘/mysql/3306/bin’
mkdir: created directory ‘/mysql/3306/pid’
mkdir: created directory ‘/mysql/3307’
mkdir: created directory ‘/mysql/3307/data’
mkdir: created directory ‘/mysql/3307/etc’
mkdir: created directory ‘/mysql/3307/socket’
mkdir: created directory ‘/mysql/3307/log’
mkdir: created directory ‘/mysql/3307/bin’
mkdir: created directory ‘/mysql/3307/pid’
mkdir: created directory ‘/mysql/3308’
mkdir: created directory ‘/mysql/3308/data’
mkdir: created directory ‘/mysql/3308/etc’
mkdir: created directory ‘/mysql/3308/socket’
mkdir: created directory ‘/mysql/3308/log’
mkdir: created directory ‘/mysql/3308/bin’
mkdir: created directory ‘/mysql/3308/pid’

(生成之後的效果)
[root@centos7 data]#tree /data
/data
├── mariadb-10.2.29-linux-x86_64.tar.gz
├── mariadb-install.sh
├── my.cnf
└── mysql
    ├── aria_log.00000001
    ├── aria_log_control
    ├── centos7.localdomain.pid
    ├── ib_buffer_pool
    ├── ibdata1
    ├── ib_logfile0
    ├── ib_logfile1
    ├── ibtmp1
    ├── multi-master.info
    ├── mysql
    │   ├── columns_priv.frm
    │   ├── columns_priv.MYD
    │   ├── columns_priv.MYI
    │   ├── column_stats.frm
    │   ├── column_stats.MYD
    │   ├── column_stats.MYI
    │   ├── db.frm
    │   ├── db.MYD
    │   ├── db.MYI
    │   ├── db.opt
    │   ├── event.frm
    │   ├── event.MYD
    │   ├── event.MYI
    │   ├── func.frm
    │   ├── func.MYD
    │   ├── func.MYI
    │   ├── general_log.CSM
    │   ├── general_log.CSV
    │   ├── general_log.frm
    │   ├── gtid_slave_pos.frm
    │   ├── gtid_slave_pos.ibd
    │   ├── help_category.frm
    │   ├── help_category.MYD
    │   ├── help_category.MYI
    │   ├── help_keyword.frm
    │   ├── help_keyword.MYD
    │   ├── help_keyword.MYI
    │   ├── help_relation.frm
    │   ├── help_relation.MYD
    │   ├── help_relation.MYI
    │   ├── help_topic.frm
    │   ├── help_topic.MYD
    │   ├── help_topic.MYI
    │   ├── host.frm
    │   ├── host.MYD
    │   ├── host.MYI
    │   ├── index_stats.frm
    │   ├── index_stats.MYD
    │   ├── index_stats.MYI
    │   ├── innodb_index_stats.frm
    │   ├── innodb_index_stats.ibd
    │   ├── innodb_table_stats.frm
    │   ├── innodb_table_stats.ibd
    │   ├── plugin.frm
    │   ├── plugin.MYD
    │   ├── plugin.MYI
    │   ├── proc.frm
    │   ├── proc.MYD
    │   ├── proc.MYI
    │   ├── procs_priv.frm
    │   ├── procs_priv.MYD
    │   ├── procs_priv.MYI
    │   ├── proxies_priv.frm
    │   ├── proxies_priv.MYD
    │   ├── proxies_priv.MYI
    │   ├── roles_mapping.frm
    │   ├── roles_mapping.MYD
    │   ├── roles_mapping.MYI
    │   ├── servers.frm
    │   ├── servers.MYD
    │   ├── servers.MYI
    │   ├── slow_log.CSM
    │   ├── slow_log.CSV
    │   ├── slow_log.frm
    │   ├── tables_priv.frm
    │   ├── tables_priv.MYD
    │   ├── tables_priv.MYI
    │   ├── table_stats.frm
    │   ├── table_stats.MYD
    │   ├── table_stats.MYI
    │   ├── time_zone.frm
    │   ├── time_zone_leap_second.frm
    │   ├── time_zone_leap_second.MYD
    │   ├── time_zone_leap_second.MYI
    │   ├── time_zone.MYD
    │   ├── time_zone.MYI
    │   ├── time_zone_name.frm
    │   ├── time_zone_name.MYD
    │   ├── time_zone_name.MYI
    │   ├── time_zone_transition.frm
    │   ├── time_zone_transition.MYD
    │   ├── time_zone_transition.MYI
    │   ├── time_zone_transition_type.frm
    │   ├── time_zone_transition_type.MYD
    │   ├── time_zone_transition_type.MYI
    │   ├── user.frm
    │   ├── user.MYD
    │   └── user.MYI
    ├── performance_schema
    │   └── db.opt
    ├── tc.log
    └── test
        └── db.opt

4 directories, 103 files
  1. 更改所有者所屬組
[root@centos7 data]#id mysql  (因為之前已經安裝過MySQL資料庫所以有這個用戶)
uid=987(mysql) gid=981(mysql) groups=981(mysql)

[root@centos7 data]#chown -R mysql.mysql /mysql/
[root@centos7 data]#ll mysql/
total 122936
-rw-rw---- 1 mysql mysql    16384 Nov 19 18:06 aria_log.00000001
-rw-rw---- 1 mysql mysql       52 Nov 19 18:06 aria_log_control
-rw-rw---- 1 mysql mysql        5 Nov 19 18:06 centos7.localdomain.pid
-rw-rw---- 1 mysql mysql      938 Nov 19 18:06 ib_buffer_pool
-rw-rw---- 1 mysql mysql 12582912 Nov 19 18:06 ibdata1
-rw-rw---- 1 mysql mysql 50331648 Nov 19 18:06 ib_logfile0
-rw-rw---- 1 mysql mysql 50331648 Nov 19 18:06 ib_logfile1
-rw-rw---- 1 mysql mysql 12582912 Nov 19 18:06 ibtmp1
-rw-rw---- 1 mysql mysql        0 Nov 19 18:06 multi-master.info
drwx------ 2 mysql mysql     4096 Nov 19 18:06 mysql
drwx------ 2 mysql mysql       20 Nov 19 18:06 performance_schema
-rw-rw---- 1 mysql mysql    24576 Nov 19 18:06 tc.log
drwx------ 2 mysql mysql       20 Nov 19 18:06 test

實驗階段

  1. 分別創建資料庫並確認資料庫文件都生成了,再查看所有者所屬組是否正確。
143  /usr/local/mysql/scripts/mysql_install_db --datadir=/mysql/3306/data --user=mysql
144  /usr/local/mysql/scripts/mysql_install_db --datadir=/mysql/3307/data --user=mysql
145  /usr/local/mysql/scripts/mysql_install_db --datadir=/mysql/3308/data --user=mysql

[root@centos7 data]#ll /mysql/3307
total 0
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 bin
drwxr-xr-x 5 mysql mysql 181 Nov 19 18:39 data
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 etc
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 log
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 pid
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 socket
[root@centos7 data]#ll /mysql/3308
total 0
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 bin
drwxr-xr-x 5 mysql mysql 181 Nov 19 18:39 data
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 etc
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 log
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 pid
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 socket
[root@centos7 data]#ll /mysql/3306
total 0
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 bin
drwxr-xr-x 5 mysql mysql 181 Nov 19 18:39 data
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 etc
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 log
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 pid
drwxr-xr-x 2 mysql mysql   6 Nov 19 18:25 socket
[root@centos7 data]#ll /mysql/3306/data/
total 110620
-rw-rw---- 1 mysql mysql    16384 Nov 19 18:39 aria_log.00000001
-rw-rw---- 1 mysql mysql       52 Nov 19 18:39 aria_log_control
-rw-rw---- 1 mysql mysql      938 Nov 19 18:39 ib_buffer_pool
-rw-rw---- 1 mysql mysql 12582912 Nov 19 18:39 ibdata1
-rw-rw---- 1 mysql mysql 50331648 Nov 19 18:39 ib_logfile0
-rw-rw---- 1 mysql mysql 50331648 Nov 19 18:39 ib_logfile1
drwx------ 2 mysql mysql     4096 Nov 19 18:39 mysql
drwx------ 2 mysql mysql       20 Nov 19 18:39 performance_schema
drwx------ 2 mysql mysql       20 Nov 19 18:39 test
  1. 準備配置文件
[root@centos7 data]#cp /etc/my.cnf /mysql/3306/etc/
[root@centos7 data]#vim /mysql/3306/etc/my.cnf   (根據自己規劃的路徑更改)
[mysqld]
port=3306
socket=/mysql/3306/socket/mysqld.sock
datadir=/mysql/3306/data
innodb_file_per_table=1

[mysqld_safe]
log-error=/mysql/3306/log/mysqld.log
pid-file=/mysql/3306/pid/mysqld.pid
~            
(準備另外兩個資料庫的配置文件)
[root@centos7 data]#cp /mysql/3306/etc/my.cnf /mysql/3307/etc/
[root@centos7 data]#cp /mysql/3306/etc/my.cnf /mysql/3308/etc/
(使用sed替換)
[root@centos7 data]#sed -i 's/3306/3307/' /mysql/3307/etc/my.cnf
[root@centos7 data]#sed -i 's/3306/3308/' /mysql/3308/etc/my.cnf
(確認已經替換掉)
[root@centos7 data]#cat /mysql/3308/etc/my.cnf
[mysqld]
port=3308
socket=/mysql/3308/socket/mysqld.sock
datadir=/mysql/3308/data
innodb_file_per_table=1

[mysqld_safe]
log-error=/mysql/3308/log/mysqld.log
pid-file=/mysql/3308/pid/mysqld.pid
[root@centos7 data]#cat /mysql/3307/etc/my.cnf
[mysqld]
port=3307
socket=/mysql/3307/socket/mysqld.sock
datadir=/mysql/3307/data
innodb_file_per_table=1

[mysqld_safe]
log-error=/mysql/3307/log/mysqld.log
pid-file=/mysql/3307/pid/mysqld.pid
  1. 設置服務啟動腳本(只有多實例安裝需要自己手寫腳本其他安裝都是自動生成的)
[root@centos7 data]#cd /mysql/3306/bin/
[root@centos7 bin]#ls

[root@centos7 bin]#vim mysqld

#!/bin/bash
port=3306
mysql_user="root"
mysql_pwd=""    (這個就為空就行)
cmd_path="/usr/local/mysql/bin"   (這個路徑按你自己的配置更改)
mysql_basedir="/mysql"
mysql_sock="${mysql_basedir}/${port}/socket/mysqld.sock"  (這個之前改過名就在mysql後面加了個d)

function_start_mysql()
{
    if [ ! -e "$mysql_sock" ];then
      printf "Starting MySQL...\n"
      ${cmd_path}/mysqld_safe --defaults-file=${mysql_basedir}/${port}/etc/my.cnf  &> /dev/null  &
    else
      printf "MySQL is running...\n"
      exit
    fi
}


function_stop_mysql()
{
    if [ ! -e "$mysql_sock" ];then
       printf "MySQL is stopped...\n"
       exit
    else
       printf "Stoping MySQL...\n"
       ${cmd_path}/mysqladmin -u ${mysql_user} -p${mysql_pwd} -S ${mysql_sock} shutdown
   fi
}


function_restart_mysql()
{
    printf "Restarting MySQL...\n"
    function_stop_mysql
    sleep 2
    function_start_mysql
}


case $1 in
start)
    function_start_mysql
;;
stop)
    function_stop_mysql
;;
restart)
    function_restart_mysql
;;
*)
    printf "Usage: ${mysql_basedir}/${port}/bin/mysqld {start|stop|restart}\n"
esac
[root@centos7 bin]#chmod +x mysqld    (加上執行許可權)
[root@centos7 bin]#pwd
/mysql/3306/bin
(在這一步的時候可以先試啟動一下如果沒問題就把剩下兩個啟動腳本一起設置好)
  1. 試啟動3306埠的資料庫
[root@centos7 bin]#ss -ntl   (確定3306埠沒有占用,這裡是因為我之前二進位安裝的資料庫占用了關掉就好了)
State       Recv-Q Send-Q   Local Address:Port                  Peer Address:Port              
LISTEN      0      128                  *:111                              *:*                  
LISTEN      0      128                  *:6000                             *:*                  
LISTEN      0      5        192.168.122.1:53                               *:*                  
LISTEN      0      128                  *:22                               *:*                  
LISTEN      0      128          127.0.0.1:631                              *:*                  
LISTEN      0      100          127.0.0.1:25                               *:*                  
LISTEN      0      128          127.0.0.1:6010                             *:*                  
LISTEN      0      128          127.0.0.1:6011                             *:*                  
LISTEN      0      80                  :::3306     (這裡埠還開著)       :::*                  
LISTEN      0      128                 :::111                             :::*                  
LISTEN      0      128                 :::6000                            :::*                  
LISTEN      0      128                 :::22                              :::*                  
LISTEN      0      128                ::1:631                             :::*                  
LISTEN      0      100                ::1:25                              :::*                  
LISTEN      0      128                ::1:6010                            :::*                  
LISTEN      0      128                ::1:6011                            :::*           
[root@centos7 bin]#service mysqld stop   (關閉資料庫)
Stopping mysqld (via systemctl):                           [  OK  ]
[root@centos7 bin]#ss -ntl
State       Recv-Q Send-Q   Local Address:Port                  Peer Address:Port              
LISTEN      0      128                  *:111                              *:*                  
LISTEN      0      128                  *:6000                             *:*                  
LISTEN      0      5        192.168.122.1:53                               *:*                  
LISTEN      0      128                  *:22                               *:*                  
LISTEN      0      128          127.0.0.1:631                              *:*                  
LISTEN      0      100          127.0.0.1:25                               *:*                  
LISTEN      0      128          127.0.0.1:6010                             *:*                  
LISTEN      0      128          127.0.0.1:6011                             *:*                  
LISTEN      0      128                 :::111                             :::*                  
LISTEN      0      128                 :::6000                            :::*                  
LISTEN      0      128                 :::22                              :::*                  
LISTEN      0      128                ::1:631                             :::*                  
LISTEN      0      100                ::1:25                              :::*                  
LISTEN      0      128                ::1:6010                            :::*                  
LISTEN      0      128                ::1:6011                            :::*                  

[root@centos7 bin]#./mysqld    (以為是自己寫的啟動腳本支持基本的三個參數)
Usage: /mysql/3306/bin/mysqld {start|stop|restart}
[root@centos7 bin]#./mysqld start
Starting MySQL...
[root@centos7 bin]#ss -ntl
State       Recv-Q Send-Q   Local Address:Port                  Peer Address:Port              
LISTEN      0      128                  *:111                              *:*                  
LISTEN      0      128                  *:6000                             *:*                  
LISTEN      0      5        192.168.122.1:53                               *:*                  
LISTEN      0      128                  *:22                               *:*                  
LISTEN      0      128          127.0.0.1:631                              *:*                  
LISTEN      0      100          127.0.0.1:25                               *:*                  
LISTEN      0      128          127.0.0.1:6010                             *:*                  
LISTEN      0      128          127.0.0.1:6011                             *:*                  
LISTEN      0      80                  :::3306   (啟動成功)              :::*                  
LISTEN      0      128                 :::111                             :::*                  
LISTEN      0      128                 :::6000                            :::*                  
LISTEN      0      128                 :::22                              :::*                  
LISTEN      0      128                ::1:631                             :::*                  
LISTEN      0      100                ::1:25                              :::*                  
LISTEN      0      128                ::1:6010                            :::*                  
LISTEN      0      128                ::1:6011                            :::*             

[root@centos7 bin]#mysql -S /mysql/3306/socket/mysqld.sock   (這裡要登陸的話可以指定socket文件路徑進行登錄)
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.2.29-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> show databases;   (查看資料庫)
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)

MariaDB [(none)]> create database db3306;  (建立一個資料庫)
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> quit
Bye
[root@centos7 bin]#cd ..
[root@centos7 3306]#ls
bin  data  etc  log  pid  socket
[root@centos7 3306]#ls data/
aria_log.00000001  ib_buffer_pool  ib_logfile1        mysql               test
aria_log_control   ibdata1         ibtmp1             performance_schema
db3306             ib_logfile0     multi-master.info  tc.log
(建立的資料庫就是生成一個新的文件夾)

(到這裡說明已經成功了,可以把之前沒做完的3307,3308做完)
  1. 繼續設置另外兩個啟動腳本
[root@centos7 3306]#cp bin/mysqld /mysql/3307/bin/
[root@centos7 3306]#cp bin/mysqld /mysql/3308/bin/  (把腳本拷貝過去)

[root@centos7 3306]#sed -i 's/3306/3307/' /mysql/3307/bin/mysqld  (sed替換)
[root@centos7 3306]#sed -i 's/3306/3308/' /mysql/3308/bin/mysqld 
[root@centos7 3306]#cat /mysql/3307/bin/mysqld   (確認替換掉了)
#!/bin/bash
port=3307
.
.
.
.
[root@centos7 3306]#cat /mysql/3308/bin/mysqld
#!/bin/bash
port=3308
.
.
.
.
  1. 啟動所有腳本
[root@centos7 3306]#/mysql/3307/bin/mysqld start (3306也可以這樣啟動)
Starting MySQL...
[root@centos7 3306]#/mysql/3308/bin/mysqld start
Starting MySQL...
[root@centos7 3306]#ss -ntl
State       Recv-Q Send-Q   Local Address:Port                  Peer Address:Port              
LISTEN      0      128                  *:111                              *:*                  
LISTEN      0      128                  *:6000                             *:*                  
LISTEN      0      5        192.168.122.1:53                               *:*                  
LISTEN      0      128                  *:22                               *:*                  
LISTEN      0      128          127.0.0.1:631                              *:*                  
LISTEN      0      100          127.0.0.1:25                               *:*                  
LISTEN      0      128          127.0.0.1:6010                             *:*                  
LISTEN      0      128          127.0.0.1:6011                             *:*                  
LISTEN      0      80                  :::3306                            :::*                  
LISTEN      0      80                  :::3307   (成功)                   :::*                  
LISTEN      0      80                  :::3308                            :::*                  
LISTEN      0      128                 :::111                             :::*                  
LISTEN      0      128                 :::6000                            :::*                  
LISTEN      0      128                 :::22                              :::*                  
LISTEN      0      128                ::1:631                             :::*                  
LISTEN      0      100                ::1:25                              :::*                  
LISTEN      0      128                ::1:6010                            :::*                  
LISTEN      0      128                ::1:6011                            :::*                  
(記得添加一下PATH變數要不使用命令工具很麻煩)
[root@centos7 mysql]#echo 'PATH=/usr/local/mysql/bin:$PATH' > /etc/profile.d/mysql.sh
[root@centos7 mysql]#. /etc/profile.d/mysql.sh

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

-Advertisement-
Play Games
更多相關文章
  • 1、進度條作用 當我們進行一個耗時操作的時候,界面不能靜止在那邊,要給用戶一個提示,表示程式是在跑的,需要用戶等待一會。就像坐電梯的時候,要顯示電梯現在在哪一層了。 2、實際的場景 有時我們程式需要操作的時間實際很難估計出來,不像電梯那樣可以精確的顯示在哪一層了,但是我們又要給客戶一個友好的提示。是 ...
  • 反射有個典型的應用,就是菜單的動態載入,原理就是通過反射調用某個窗體(類)。下麵演示一下通過反射調用類及方法: 1、新建一個類,命名為:ReflectionHelper,代碼如下: #region 創建對象實例 /// <summary> /// 創建對象實例 /// </summary> /// ...
  • 目 錄 1. 概述... 1 2. 登陸信息... 2 3. 設備驅動... 3 4. 組態建模... 3 5. 手機APP. 5 6. 視頻演示... 6 1. 概述 此次我們團隊人員對iNeuOS進行了全面升級,主要升級內容包括: (1) 設備容器增加設備驅動,包括:西門子(S7-200smar ...
  • 1. WPF有,而UWP沒有的圖片平鋪功能 在WPF中只要將ImageSource的 屬性設置為 即可實現圖片的平鋪,具體可見WPF的這些文檔: "ImageBrush 類 (System.Windows.Media) _ Microsoft Docs" "TileBrush 類 (System.W ...
  • .NET Core前後端分離快速開發框架(Core.3.0+AntdVue) 目錄 "引言" "簡介" "環境搭建" "開發環境要求" "基礎資料庫構建" "資料庫設計規範" "運行" "使用教程" "全局配置" "快速開發" "管理員登錄" "系統用戶管理" "系統角色管理" "許可權管理" "介面 ...
  • 下麵是在使用fuse3 編譯bbfs 過程中一些參數,用於備忘: FUSE_CFLAGS="-I/usr/local/include/fuse3" FUSE_LIBS="-L/usr/local/lib/x86_64-linux-gnu -lfuse3 -lpthread -ldl" ./confi ...
  • 恩智浦實時控制嵌入式軟體庫(縮寫為RTCESL,以前為恩智浦嵌入式軟體庫FSLESL)是一組演算法,從基礎數學運算到高級數學變換以及高級觀測器,這些都可以方便地用在複雜的實時控制應用中以及我們的電機控制參考設計中。對於需要高強度數學計算和控制的應用(比如先進的高效電機控制和功率變換),這些演算法可以幫助 ...
  • 解決方法: 1、系統偏好設置==> 安全性與隱私 > 在下方允許就可以了。 2、一勞永逸 但是註意安全性 打開terminal 命令行工具輸入命令:sudo spctl --master-disable輸入密碼即可解決 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...