tomcat軟連線配置

2021-10-14 04:20:41 字數 1553 閱讀 2287

修改tomcat/conf/context.xml檔案,在context節點上新增屬性allowlinking=」true」

$/conf/web.xml

tomcat不同版本context.xml檔案配置

7.0及其一下版本

8.0及其以上版本

mklink是windows系統下建立符號鏈結和硬鏈結的命令工具,它是乙個很好的解決檔案系統問題的工具。使用它需要管理員許可權

mklink

建立符號鏈結。

mklink [[/d] | [/h] | [/j]] link target

/d 建立目錄符號鏈結。預設為檔案符號鏈結。

/h 建立硬鏈結而非符號鏈結。

/j 建立目錄聯接。

link 指定新的符號鏈結名稱。

target 指定新鏈結引用的路徑(相對或絕對)。

注意:因為powershell不支援mklink命令,所以要在前面加cmd /c表示用cmd來執行該命令,路徑注意引號,可以是相對路徑也可以是絕對路徑。

目錄聯接在建立時會自動引用目標目錄的絕對路徑,而符號鏈結允許相對路徑的引用。

如分別用 mklink /d dira tdir 和 mklink /j dirb tdir 建立 dira、dirb 對相對目錄的 tdir 的符號鏈結和目錄聯接,之後將 dira、dirb 移動到其它目錄下,則訪問 dira 時會提示「位置不可用」,訪問 dirb 時仍然正常指向 tdir;

且win10_x64_build10565的cmd下dir命令檢視會發現, dira符號鏈結鏈結到的是相對路徑下的tdir檔案(不管是否存在tdir檔案), 且檔案型別是symlink, dirb目錄聯接則鏈結到絕對(全)路徑下的tdir檔案, 且檔案型別是junction(可能是系統自動把相對路徑轉換為全路徑)

而分別用 mklink /d dira c:\demo\tdir 和 mklink /j dirb c:\demo\tdir 建立 c:\demo\tdir 的符號鏈結和目錄聯接,再將這兩個目錄鏈結移動到其它目錄下,則 dira 和 dirb 均可正常指向 c:\demo\tdir;

例如:mklink /d  d:\project\hjiczoom\target\hjiczoom-0.0.1\staticproduct  d:\file\files\staticproduct

d:\file\files\staticproduct:檔案實際存放位置

d:\project\hjiczoom\target\hjiczoom-0.0.1\staticproduct:專案訪問位置

選項:例如:

ln -s /files/staticproduct /www/hjiczoom/staticproduct

/files/staticproduct:檔案實際存放位置

/www/hjiczoom/staticproduct:專案訪問位置

linux配置軟連線

說明當你的系統盤不夠用時客戶提供了乙個硬碟 首先用df th檢視 root localhost cosmo df th 檔案系統 型別 容量 已用 可用 已用 掛載點 devtmpfs devtmpfs 2.9g 0 2.9g 0 dev tmpfs tmpfs 2.9g 0 2.9g 0 dev ...

Tomcat配置SSL連線

1.伺服器端單項認證 在tomcat的server.xml檔案中,已經提供了現成的配置ssl聯結器的 只要把元素的注釋去掉即可 實際上,基於ssl的https使用的預設埠是443。但tomcat在這裡將https埠設定為8443。配置裡的一些屬性引數如下表 clientauth如果設為true 即雙...

tomcat 連線池配置

maxidle,最大空閒數,資料庫連線的最大空閒時間。超過空閒時間,資料庫連線將被標記為不可用,然後被釋放。設為0表示無限制。maxactive,連線池的最大資料庫連線數。設為0表示無限制。maxwait 最大建立連線等待時間。如果超過此時間將接到異常。設為 1表示無限制。maxactive 最大連...