Linux 指令
阿新 • • 發佈:2018-11-12
臨時 shutdown code div ive table lin 目錄 pre
Linux 常用命令:
1.ifconfig 查看Ip地址 2.cd / 取到Linux操作系統的根目錄 cd /usr 進入到指定目錄下 絕對路徑 cd usr 進入當前文件夾下的usr目錄 相對路徑 cd ../ 返回上一目錄 3.ls 查詢當前文件夾下的文件信息 ll 查詢文件的詳細信息 4.clear 清屏 /windows cls 5.pwd 查詢當前文件所在路徑 6.mkdir aa bb cc 同時創建多個文件夾 mkdir-p dd/ee/ff 可以實現遞歸創建 7.rm -rf 文件名稱 刪除文件 8.vim a.txt 9.i: 進入編輯狀態 10.esc: 退出編輯狀態 11.u : 表示撤銷 :wq 表示保存退出. cp 需要復制文件 新文件名稱 復制單個文件 cp -r aa ee 復制文件夾
12.移動命令
mv 舊文件名稱 文件路徑/新名稱
mv a.txt ../ 將a.txt 移動到上一級
mv a.txt ../b.txt 將a.txt移動到上一級並且改名為b.txt
關閉防火墻
1.service iptables stop #臨時關閉2.service iptables start #臨時開啟 重啟虛擬機時失效 3.chkconfig iptables on #永久開啟 4.chkconfig iptables off #永久關閉
修改JDBC連接
jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://192.168.126.1:3306/jtdb?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true jdbc.username=root jdbc.password=root
開關tomcat
./shutdown.sh
sh shutdown.sh
Linux 指令