使用springboot對linux進行操控
1,在pom中匯入
<dependency>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<version>build210</version>
</dependency>
2,編寫工具類
package org.jeecg.modules.system.util;
/**
* @Description:
* @Author: LGX
* @Date: 2020/11/19 10:36
*/
import ch.ethz.ssh2.Connection;
import ch.ethz.ssh2.Session;
import ch.ethz.ssh2.StreamGobbler;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import java.io.*;
/**
* 遠端執行linux的shell script
* @author Ickes
* @since V0.1
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@Slf4j
@Component
public class RemoteExecuteCommandutil {
//字元編碼預設是utf-8
private static String DEFAULTCHART="UTF-8";
private Connection conn;
@Value(value = "${jeecg.linux.ip}")
public String ip;
@Value(value = "${jeecg.linux.userName}")
public String userName;
@Value(value = "${jeecg.linux.userPwd}")
public String userPwd;
/**
* 遠端登入linux的主機
* @author Ickes
* @since V0.1
* @return
* 登入成功返回true,否則返回false
*/
public Boolean login(){
boolean flg=false;
try {
conn = new Connection(ip);
conn.connect();//連線
flg=conn.authenticateWithPassword(userName, userPwd);//認證
} catch (IOException e) {
e.printStackTrace();
}
return flg;
}
/**
* @author Ickes
* 遠端執行shll指令碼或者命令
* @param cmd
* 即將執行的命令
* @return
* 命令執行完後返回的結果值
* @since V0.1
*/
public String execute(String cmd){
String result="";
try {
if(login()){
Session session= conn.openSession();//開啟一個會話
session.execCommand(cmd);//執行命令
result=processStdout(session.getStdout(),DEFAULTCHART);
//如果為得到標準輸出為空,說明指令碼執行出錯了
if(StringUtils.isBlank(result)){
result=processStdout(session.getStderr(),DEFAULTCHART);
}
conn.close();
session.close();
}
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
/**
* @author Ickes
* 遠端執行shll指令碼或者命令
* @param cmd
* 即將執行的命令
* @return
* 命令執行成功後返回的結果值,如果命令執行失敗,返回空字串,不是null
* @since V0.1
*/
public String executeSuccess(String cmd){
String result="";
try {
if(login()){
Session session= conn.openSession();//開啟一個會話
session.execCommand(cmd);//執行命令
result=processStdout(session.getStdout(),DEFAULTCHART);
conn.close();
session.close();
}
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
/**
* 解析指令碼執行返回的結果集
* @author Ickes
* @param in 輸入流物件
* @param charset 編碼
* @since V0.1
* @return
* 以純文字的格式返回
*/
private String processStdout(InputStream in, String charset){
InputStream stdout = new StreamGobbler(in);
StringBuffer buffer = new StringBuffer();;
try {
BufferedReader br = new BufferedReader(new InputStreamReader(stdout,charset));
String line=null;
while((line=br.readLine()) != null){
buffer.append(line+"\n");
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return buffer.toString();
}
}
3,yml裡編寫配置資訊
jeecg :
linux:
ip: 192.168.xxx.xxx
userName: root
userPwd: 123456
4## 注入工具類,編寫命令
@Autowired
private RemoteExecuteCommandutil Commandutil;
@GetMapping(value = "/training")
public String training(@RequestParam(name="cmd") String cmd){
// String a = "sh /opt/shops/test1.sh 1 3";
//命令返回的資訊
String cmdInformation =Commandutil.execute("source /etc/profile;"+cmd);
return cmdInformation;
}
由於ssh連線無法自動獲取環境變數的值,得再執行前面加入source /etc/profile;來手動識別,如果還是不行可以在/etc/profile末尾加入export PATH="$PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
相關文章
- 使用springboot對各層的程式碼進行測試!Spring Boot
- springboot中使用actuator進行監控Spring Boot
- Linux版對sys使用者進行審計的示例Linux
- 使用 SOS 對 Linux 中執行的 .NET Core 進行問題診斷Linux
- springboot中加入druid對sql進行監控Spring BootUISQL
- 使用 canvas 對影象進行處理Canvas
- 使用APT對redhat進行更新(轉)APTRedhat
- 對 LLM 工具使用進行統一
- springboot~configserver裡對重要資訊進行RSA加密Spring BootGseServer加密
- 【原創】Linux版 對普通使用者進行審計的示例Linux
- 【原創】Linux版 對sys使用者進行審計的示例Linux
- 使用acorn對JavaScript程式碼進行解析。JavaScript
- 使用Ganglia對hadoop進行監控Hadoop
- 使用 shutter 對網站進行截圖網站
- 使用GnuPG對檔案進行加密(轉)加密
- 使用XPathExpression類對XML進行排序 (轉)ExpressXML排序
- SpringBoot介面 - 如何優雅的對引數進行校驗?Spring Boot
- 對 Linux 核心進行壓力測試(轉)Linux
- SpringBoot--- 使用SpringSecurity進行授權認證Spring BootGse
- 使用SpringBoot進行優雅的資料驗證Spring Boot
- 在Linux環境下使用OpenSSL對訊息和檔案進行加密Linux加密
- 使用Shell指令碼對Linux系統和程式資源進行監控指令碼Linux
- 如何使用 apt 進行 Linux 包管理APTLinux
- 使用 Sysbench 進行 Linux 效能測試Linux
- 使用 locust 對 mysql 語句進行壓測MySql
- 使用Collections對list的內容進行排序排序
- 如何使用Nginx對Artifactory進行http應用NginxHTTP
- 如何使用Python對引數進行解析Python
- 使用Java客戶端對Redis進行操作Java客戶端Redis
- 使用ab對nginx進行壓力測試Nginx
- 在linux系統中對檔案進行分割Linux
- IOSTAT對linux硬碟IO效能進行檢測iOSLinux硬碟
- springboot2.0使用外部tomcat進行啟動方法Spring BootTomcat
- Springboot使用ResponseBodyAdvice進行統一返回介面資料格式的使用Spring Boot
- Jmeter使用beanshell對資料進行加密傳輸JMeterBean加密
- 使用JAXP對xml文件進行DOM解析基礎XML
- dhtmlxGantt如何對任務進行分組使用教程HTML
- Docker中使用Xhprof 對程式碼進行效能分析Docker