mysql二進位安裝腳本部署

来源:https://www.cnblogs.com/tushanbu/archive/2022/09/20/16711987.html
-Advertisement-
Play Games

mysql二進位安裝腳本部署 單實例 [root@localhost ~]# mkdir mysql //創建存放腳本目錄 [root@localhost ~]# ls anaconda-ks.cfg mysql [root@localhost ~]# cd mysql/ [root@localho ...


mysql二進位安裝腳本部署


目錄

單實例

[root@localhost ~]# mkdir mysql   //創建存放腳本目錄
[root@localhost ~]# ls
anaconda-ks.cfg  mysql
[root@localhost ~]# cd mysql/
[root@localhost mysql]# mkdir files  //創建安裝包目錄
[root@localhost mysql]# ls
files
[root@localhost mysql]# ls files/
mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
[root@localhost mysql]# touch mysql_install.sh  //創建腳本文件
[root@localhost mysql]# chmod +x mysql_install.sh  //賦予執行許可權
[root@localhost mysql]# ll
total 0
drwxr-xr-x. 2 root root 56 Sep 19 21:16 files
-rwxr-xr-x. 1 root root  0 Sep 19 21:18 mysql_install.sh
[root@localhost mysql]# vim mysql_install.sh 
[root@localhost mysql]# cat mysql_install.sh 
#!/bin/bash

#設置執行許可權
if [ $UID -ne 0 ];then
        echo "請以管理員用戶進行執行"
        exit
fi
read -p "請輸入要創建的實例個數: " count
read -p "請輸入數據存放目錄(預設路徑: /opt/xbz): " datadir
read -p "請輸入要為資料庫設置的密碼: " passwd
read -p "請輸入安裝目錄,(預設路徑:/usr/local/mysql):" mysql_install_dir
#判斷安裝目錄合法性
echo $mysql_install_dir | grep -E '^/[a-z][a-z]*(/[a-z][a-z]*)*$' &> /dev/null
if [ $? -eq 0 ];then
    if [ ! -d $mysql_install_dir ];then
        mkdir -p $mysql_install_dir
    fi
else
    mysql_install_dir=/usr/local/mysql
fi
#判斷安裝目錄是否為空
if [ -z $mysql_install_dir ];then
    mysql_install_dir=/usr/local/mysql
fi

#創建用戶
id mysql &> /dev/null
if [ $? -ne 0 ];then
        useradd -r -M -s /sbin/nologin mysql
    else
            echo "用戶已存在"
fi
#安裝依賴包
dnf -y install ncurses-compat-libs 
#解壓軟體包,修改目錄和所屬組
if [ ! -d $mysql_install_dir ];then
    echo "解壓軟體包"
    tar xf files/mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz -C /usr/local
    cd /usr/local
    mv mysql-5.7.38-linux-glibc2.12-x86_64 mysql
fi
chown -R mysql.mysql ${mysql_install_dir}
#設置環境變數
echo 'export PATH=${mysql_install_dir}/lib' > /etc/ld.so.conf.d/mysql.conf
#做頭文件
ln -s ${mysql_install_dir}/include /usr/include/mysql
#配置lib
echo '${mysql_install_dir}/lib' > /etc/ld.so.conf.d/mysql.conf
ldconfig
#設置man文檔
grep '${mysql_install_dir}/man' /etc/man_db.conf &> /dev/null
if [ $? -ne 0 ];then
        sed -i "22a MANDATORY_MANPATH                       ${mysql_install_dir}/man" /etc/man_db.conf
fi
#建立數據存放目錄
for i in $(seq $count);do
    if [ $count -eq 1 ];then
            if [ -z $datadir ];then
                datadir=/opt/xbz
            fi
            if [ ! -d $datadir ];then
                mkdir -p $datadir
            fi      
            chown -R mysql.mysql $datadir
            ${mysql_install_dir}/bin/mysqld --initialize --user mysql --datadir $datadir &> /tmp/passwd
#生成數據配置文件
            cat > /etc/my.cnf << EOF
[mysqld]
basedir = ${mysql_install_dir}
datadir = $datadir
socket = /tmp/mysql.sock 
port = 3306 
pid-file = $datadir/mysql.pid 
user = mysql 
skip-name-resolve 
EOF
#配置服務啟動腳本
if [ ! -f /etc/init.d/mysqld ];then
        cp  -a   ${mysql_install_dir}/support-files/mysql.server /etc/init.d/mysqld
        sed -ri  '/^basedir=/c basedir=${mysql_install_dir}' /etc/init.d/mysqld
        sed -ri  "/^datadir=/c datadir=$datadir" /etc/init.d/mysqld
fi
chmod +x /etc/init.d/mysqld
#啟動mysql並設置開機自啟
service mysqld start
sleep 6
chkconfig --add mysqld
ln -s ${mysql_install_dir}/bin/mysql /usr/bin
password=$(grep 'password' /tmp/passwd |awk '{print $NF}')
mysql -uroot -p$password --connect-expired-password -e "set password = password('$passwd');"
echo "資料庫的密碼是: $passwd"
    fi
done
驗證:
[root@localhost mysql]# mysql -uroot -p'lnh@321'
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.38 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> exit
Bye

使用函數的單實例

[root@localhost mysql]# cat mysql_install.sh 
#!/bin/bash

#設置執行許可權
if [ $UID -ne 0 ];then
        echo "請以管理員用戶進行執行"
        exit
fi

function init(){
id mysql &> /dev/null
if [ $? -ne 0 ];then
        useradd -r -M -s /sbin/nologin mysql
    else
            echo "用戶已存在"
fi
#安裝依賴包
dnf -y install ncurses-compat-libs 
#解壓軟體包,修改目錄和所屬組
if [ ! -d $mysql_install_dir ];then
    echo "解壓軟體包"
    tar xf files/mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz -C /usr/local
    cd /usr/local
    mv mysql-5.7.38-linux-glibc2.12-x86_64 mysql
else
    echo 'mysql已安裝,不需要重覆安裝'
    exit
fi
chown -R mysql.mysql ${mysql_install_dir}
#設置環境變數
echo 'export PATH=${mysql_install_dir}/lib' > /etc/ld.so.conf.d/mysql.conf
#做頭文件
ln -s ${mysql_install_dir}/include /usr/include/mysql
#配置lib
echo '${mysql_install_dir}/lib' > /etc/ld.so.conf.d/mysql.conf
ldconfig
#設置man文檔
grep '${mysql_install_dir}/man' /etc/man_db.conf &> /dev/null
if [ $? -ne 0 ];then
        sed -i "22a MANDATORY_MANPATH                       ${mysql_install_dir}/man" /etc/man_db.conf
fi
}
function init2(){

            if [ -z $datadir ];then
                datadir=/opt/xbz
            fi
            if [ ! -d $datadir ];then
                mkdir -p $datadir
            fi
            chown -R mysql.mysql $datadir
}

function single(){
    init        
#建立數據存放目錄
for i in $(seq $count);do
    if [ $count -eq 1 ];then
        init2           
#判斷是否已格式化           
            content=$(ls -l $datadir | grep -v total | wc -l)
            if [ $content -eq 0 ];then
                ${mysql_install_dir}/bin/mysqld --initialize --user mysql --datadir $datadir &> /tmp/passwd
            else
                echo '不需要重覆初始化'
                exit
            fi
#生成數據配置文件
            cat > /etc/my.cnf << EOF
[mysqld]
basedir = ${mysql_install_dir}
datadir = $datadir
socket = /tmp/mysql.sock 
port = 3306 
pid-file = $datadir/mysql.pid 
user = mysql 
skip-name-resolve 
EOF
#配置服務啟動腳本
if [ ! -f /etc/init.d/mysqld ];then
        cp  -a   ${mysql_install_dir}/support-files/mysql.server /etc/init.d/mysqld
        sed -ri  '/^basedir=/c basedir=${mysql_install_dir}' /etc/init.d/mysqld
        sed -ri  "/^datadir=/c datadir=$datadir" /etc/init.d/mysqld
fi
chmod +x /etc/init.d/mysqld
#啟動mysql並設置開機自啟
service mysqld start
sleep 6
chkconfig --add mysqld
ln -s ${mysql_install_dir}/bin/mysql /usr/bin
password=$(grep 'password' /tmp/passwd |awk '{print $NF}')
mysql -uroot -p$password --connect-expired-password -e "set password = password('$passwd');"
echo "mysql安裝成功,資料庫的密碼是: $passwd"
    fi
done
}
read -p "請輸入要創建的實例個數: " count
read -p "請輸入安裝目錄,(預設路徑:/usr/local/mysql):" mysql_install_dir
read -p "請輸入數據存放目錄(預設路徑: /opt/xbz): " datadir
read -p "請輸入要為資料庫設置的密碼(預設密碼123456): " passwd
#判斷安裝目錄合法性
echo $mysql_install_dir | grep -E '^/[a-z][a-z]*(/[a-z][a-z]*)*$' &> /dev/null
if [ $? -eq 0 ];then
    if [ ! -d $mysql_install_dir ];then
        mkdir -p $mysql_install_dir
    fi
else
    mysql_install_dir=/usr/local/mysql
fi
#判斷安裝目錄是否為空
if [ -z $mysql_install_dir ];then
    mysql_install_dir=/usr/local/mysql
fi
#判斷數據存放目錄是否為空
if [ -z $datadir ];then
    datadir=/opt/xbz
fi
#判斷數據存放目錄是否合法
echo $datadir | grep "^/[a-z][a-z]*\(/[a-z][a-z]*\)*$" &> /dev/null
if [ $? -ne 0 ];then
    datadir=/opt/xbz
fi
#設置資料庫密碼格式
if [ -z $passwd ];then
    passwd=123456
else
    echo $passwd | grep -E '[a-z]+' | grep -E '[A-Z]+' | grep -E '[0-9]+' | grep -E '_+' &> /dev/null
    if [ $? -ne 0 ] || [ ${#passwd} -lt 8 ];then
        passwd=123456
    fi
fi
#創建用戶
if [ $count -eq 1 ];then
    single        
else
    echo "多實例"       
fi
驗證:               
[root@localhost mysql]# mysql -uroot -p'123456'
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.38 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> exit
Bye

使用函數的單實例或者多實例

[root@localhost mysql]# cat mysql_install.sh 
#!/bin/bash

#設置執行許可權
if [ $UID -ne 0 ];then
        echo "請以管理員用戶進行執行"
        exit
fi

function init(){
id mysql &> /dev/null
if [ $? -ne 0 ];then
        useradd -r -M -s /sbin/nologin mysql
    else
            echo "用戶已存在"
fi
#安裝依賴包
dnf -y install ncurses-compat-libs perl 
#解壓軟體包,修改目錄和所屬組
if [ ! -d $mysql_install_dir ];then
    echo "解壓軟體包"
    tar xf files/mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz -C /usr/local
    cd /usr/local
    mv mysql-5.7.38-linux-glibc2.12-x86_64 mysql
fi
chown -R mysql.mysql ${mysql_install_dir}
#設置環境變數
echo 'export PATH=${mysql_install_dir}/lib' > /etc/ld.so.conf.d/mysql.conf
#做頭文件
ln -s ${mysql_install_dir}/include /usr/include/mysql
#配置lib
echo '${mysql_install_dir}/lib' > /etc/ld.so.conf.d/mysql.conf
ldconfig
#設置man文檔
grep '${mysql_install_dir}/man' /etc/man_db.conf &> /dev/null
if [ $? -ne 0 ];then
        sed -i "22a MANDATORY_MANPATH                       ${mysql_install_dir}/man" /etc/man_db.conf
fi
}
function init2(){

            if [ -z $datadir ];then
                datadir=/opt/xbz
            fi
            if [ ! -d $datadir ];then
                mkdir -p $datadir
            fi
            chown -R mysql.mysql $datadir
}
#單實例
function single(){
    init        
#建立數據存放目錄
for i in $(seq $count);do
    if [ $count -eq 1 ];then
        init2           
#判斷是否已格式化           
            content=$(ls -l $datadir | grep -v total | wc -l)
            if [ $content -eq 0 ];then
                ${mysql_install_dir}/bin/mysqld --initialize --user mysql --datadir $datadir &> /tmp/passwd
            else
                echo '不需要重覆初始化'
                exit
            fi
#生成數據配置文件
            cat > /etc/my.cnf << EOF
[mysqld]
basedir = ${mysql_install_dir}
datadir = $datadir
socket = /tmp/mysql.sock 
port = 3306 
pid-file = $datadir/mysql.pid 
user = mysql 
skip-name-resolve 
EOF
#配置服務啟動腳本
if [ ! -f /etc/init.d/mysqld ];then
        cp  -a   ${mysql_install_dir}/support-files/mysql.server /etc/init.d/mysqld
        sed -ri  '/^basedir=/c basedir=${mysql_install_dir}' /etc/init.d/mysqld
        sed -ri  "/^datadir=/c datadir=$datadir" /etc/init.d/mysqld
fi
chmod +x /etc/init.d/mysqld
#啟動mysql並設置開機自啟
service mysqld start
sleep 6
chkconfig --add mysqld
ln -s ${mysql_install_dir}/bin/mysql /usr/bin
password=$(grep 'password' /tmp/passwd |awk '{print $NF}')
mysql -uroot -p"$password" --connect-expired-password -e "set password = password('$passwd');"
echo "mysql安裝成功,資料庫的密碼是: $passwd"
    fi
done
}
#多實例
function multi(){
    init
    init2
    port=3306
#配置配置文件/etc/my.cnf
    cat > /etc/my.cnf <<EOF
[mysqld_multi]
mysqld = ${mysql_install_dir}/bin/mysqld_safe
mysqladmin = ${mysql_install_dir}/bin/mysqladmin
EOF
#創建各實例數據存放的目錄並初始化各實例
    for i in $(seq $count);do
        mkdir -p ${datadir}/$port
        chown -R mysql.mysql ${datadir}
        content=$(ls -l ${datadir}/$port | grep -v total | wc -l)
        if [ $content -eq 0 ];then
                echo "正在初始化各實例"
                ${mysql_install_dir}/bin/mysqld --initialize --user=mysql --datadir=${datadir}/$port &> /tmp/passwd
#取出臨時資料庫密碼
            password=$(grep 'password' /tmp/passwd |awk '{print $NF}')
        else
            let port++
            continue        
        fi
#配置配置文件/etc/my.cnf
        cat >> /etc/my.cnf << EOF
[mysqld$port]
datadir = ${datadir}/$port
port = $port
socket = /tmp/mysql{$port}.sock
pid-file = ${datadir}/${port}/mysql_${port}.pid
log-error=/var/log/${port}.log
EOF
#啟動各實例並修改資料庫密碼
        ln -s ${mysql_install_dir}/bin/my_print_defaults /usr/bin
        ${mysql_install_dir}/bin/mysqld_multi start ${port}
        sleep 6
        ln -s ${mysql_install_dir}/bin/mysql /usr/bin
        mysql -uroot -p"$password" -h127.0.0.1 -P${port} --connect-expired-password -e "set password = password('$passwd');"
        let port++
    done
    echo "mysql安裝成功,資料庫的密碼是: $passwd"
}

read -p "請輸入要創建的實例個數: " count
read -p "請輸入安裝目錄,(預設路徑:/usr/local/mysql):" mysql_install_dir
read -p "請輸入數據存放目錄(預設路徑: /opt/xbz): " datadir
read -p "請輸入要為資料庫設置的密碼(預設密碼123456): " passwd
#判斷安裝目錄合法性
echo $mysql_install_dir | grep -E '^/[a-z][a-z]*(/[a-z][a-z]*)*$' &> /dev/null
if [ $? -eq 0 ];then
    if [ ! -d $mysql_install_dir ];then
        mkdir -p $mysql_install_dir
    fi
else
    mysql_install_dir=/usr/local/mysql
fi
#判斷安裝目錄是否為空
if [ -z $mysql_install_dir ];then
    mysql_install_dir=/usr/local/mysql
fi
#判斷數據存放目錄是否為空
if [ -z $datadir ];then
    datadir=/opt/xbz
fi
#判斷數據存放目錄是否合法
echo $datadir | grep "^/[a-z][a-z]*\(/[a-z][a-z]*\)*$" &> /dev/null
if [ $? -ne 0 ];then 
    datadir=/opt/xbz
fi
#設置資料庫密碼格式
if [ -z $passwd ];then
    passwd=123456
else
    echo $passwd | grep -E '[a-z]+' | grep -E '[A-Z]+' | grep -E '[0-9]+' | grep -E '_+' &> /dev/null
    if [ $? -ne 0 ] || [ ${#passwd} -lt 8 ];then
        passwd=123456
    fi
fi
#創建用戶
if [ $count -eq 1 ];then
    single
    ss -antl    
else
    multi
    ss -antl
fi
驗證:
[root@localhost mysql]# mysql -uroot -p'123456' -h127.0.0.1 -P3306
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.38 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> exit
Bye
[root@localhost mysql]# mysql -uroot -p'123456' -h127.0.0.1 -P3307
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.38 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> exit
Bye
[root@localhost mysql]# mysql -uroot -p'123456' -h127.0.0.1 -P3308
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.38 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

mysql> exit
Bye


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

-Advertisement-
Play Games
更多相關文章
  • 學習網站: http://seaborn.pydata.org/examples/scatterplot_matrix.html 一、Anscombe's quartet(安斯庫姆四重奏) 1973年,統計學家F.J. Anscombe構造出了四組奇特的數據。它告訴人們,數據分析之前,描繪數據所對應 ...
  • 類型載入器設計(Type Loader Design) 原文:https://github.com/dotnet/runtime/blob/main/docs/design/coreclr/botr/type-loader.md 作者: Ladi Prosek - 2007 翻譯:幾秋 (https ...
  • 最近在項目中啟用了Nullable 可為空的類型,這個特性確實很好用,在 WebAPI 的入參上可以直接採用 ? 來標記一個欄位是否允許為空,但是使用過程中遇到瞭如下一個問題,比如創建部門介面 我們定義入參模型如下: public class DtoDepartment { /// <summary ...
  • .NET 6 EFCore WebApi 使用 JMeter 進行吞吐量測試 開發環境 VS2022 .NET 6 測試環境 測試工具 介面壓力測試工具:JMeter 資料庫 MySQL 5.7 資料庫和WebApi服務在同一臺伺服器上,JMeter在本人筆記本上。 測試設置 200個線程併發,每個 ...
  • 一、 環境準備 本次配置基於DR負載均衡模式,設置一個VIP(Virtual IP)為19.50.67.173,用戶只需要訪問這個IP地址即可獲得後端服務 其中,負載均衡主機為19.50.67.165(LVS1),備機為 19.50.67.169(LVS2)。Web伺服器A為19.50.67.171 ...
  • forklift Mac版是一款強大的文件管理程式,彌補了Finder文件管理比較單一的功能,強大到能遠程連接Ftp,SFTP,Amazon S3,WebDAV,SMB,NIS,AFP等網路共用服務協議。相對其他文件管理器如Path Finder,forklift mac更加小巧快速。 除此之外Fo ...
  • PowerPoint 無法打開文件 出現的問題 今天下載老師放在學習通的ppt,居然不能打開,記錄一下 點擊修複後出現: 這並不是文件損壞了,而是powerpoint出於安全的考慮,為了保護我們的電腦,不能打開其他電腦的文件。 解決辦法 右鍵選擇屬性,進入常規界面,勾選解除鎖定,點擊引用,點擊確 ...
  • 個人超級電腦是一個新概念,目前這個市場類似上世紀70年的PC革命時代。本篇是回答一位用戶提問,LAXCUS分散式操作系統如何成為一臺“個人超級電腦”。 ...
一周排行
    -Advertisement-
    Play Games
  • Dapr Outbox 是1.12中的功能。 本文只介紹Dapr Outbox 執行流程,Dapr Outbox基本用法請閱讀官方文檔 。本文中appID=order-processor,topic=orders 本文前提知識:熟悉Dapr狀態管理、Dapr發佈訂閱和Outbox 模式。 Outbo ...
  • 引言 在前幾章我們深度講解了單元測試和集成測試的基礎知識,這一章我們來講解一下代碼覆蓋率,代碼覆蓋率是單元測試運行的度量值,覆蓋率通常以百分比表示,用於衡量代碼被測試覆蓋的程度,幫助開發人員評估測試用例的質量和代碼的健壯性。常見的覆蓋率包括語句覆蓋率(Line Coverage)、分支覆蓋率(Bra ...
  • 前言 本文介紹瞭如何使用S7.NET庫實現對西門子PLC DB塊數據的讀寫,記錄了使用電腦模擬,模擬PLC,自至完成測試的詳細流程,並重點介紹了在這個過程中的易錯點,供參考。 用到的軟體: 1.Windows環境下鏈路層網路訪問的行業標準工具(WinPcap_4_1_3.exe)下載鏈接:http ...
  • 從依賴倒置原則(Dependency Inversion Principle, DIP)到控制反轉(Inversion of Control, IoC)再到依賴註入(Dependency Injection, DI)的演進過程,我們可以理解為一種逐步抽象和解耦的設計思想。這種思想在C#等面向對象的編 ...
  • 關於Python中的私有屬性和私有方法 Python對於類的成員沒有嚴格的訪問控制限制,這與其他面相對對象語言有區別。關於私有屬性和私有方法,有如下要點: 1、通常我們約定,兩個下劃線開頭的屬性是私有的(private)。其他為公共的(public); 2、類內部可以訪問私有屬性(方法); 3、類外 ...
  • C++ 訪問說明符 訪問說明符是 C++ 中控制類成員(屬性和方法)可訪問性的關鍵字。它們用於封裝類數據並保護其免受意外修改或濫用。 三種訪問說明符: public:允許從類外部的任何地方訪問成員。 private:僅允許在類內部訪問成員。 protected:允許在類內部及其派生類中訪問成員。 示 ...
  • 寫這個隨筆說一下C++的static_cast和dynamic_cast用在子類與父類的指針轉換時的一些事宜。首先,【static_cast,dynamic_cast】【父類指針,子類指針】,兩兩一組,共有4種組合:用 static_cast 父類轉子類、用 static_cast 子類轉父類、使用 ...
  • /******************************************************************************************************** * * * 設計雙向鏈表的介面 * * * * Copyright (c) 2023-2 ...
  • 相信接觸過spring做開發的小伙伴們一定使用過@ComponentScan註解 @ComponentScan("com.wangm.lifecycle") public class AppConfig { } @ComponentScan指定basePackage,將包下的類按照一定規則註冊成Be ...
  • 操作系統 :CentOS 7.6_x64 opensips版本: 2.4.9 python版本:2.7.5 python作為腳本語言,使用起來很方便,查了下opensips的文檔,支持使用python腳本寫邏輯代碼。今天整理下CentOS7環境下opensips2.4.9的python模塊筆記及使用 ...