securecrt命令:
startup.sh //啟動tomcat,startup.sh做了對映的話,可以在任何目錄下
shutdown.sh //關tomcat
cd /home //到home 目錄
ll 列出當前目錄下的所有檔案,包括每個檔案的詳細資訊
ls //只列出檔名
ps -ef //檢視server的程序,以列表形式顯示的server程序。
ps 顯示當前在系統執行的程序 /usr/bin/ps [選項] -e 顯示每個現在執行的程序 -f 生成乙個完全的列表
ant -buildfile cms_maintrunk.xml //build 包
過程:先undeploy ,再關tomcat,然後再build(ant),最後啟動tomcat
在http://127.0.0.1:8080/manager/html中undeploy
tomcate root: /usr/local/jakarta-tomcat-5.0.28
[root@localhost classes]# vi test.txt //瀏覽檔案內容
i esc 退出insert
:wq! write 儲存並退出vi模式
:q! 不儲存退出vi模式
pwd //顯示當前工作目錄
在 shell 提示下鍵入 history可以檢視以前輸入過的命令(對該伺服器輸入過的歷史命令,並不一定都是自己曾輸的)。
# history 20 (顯示最後20條命令)
hostname:查hostname
ifconfig 查詢主機ip
1、當你對乙個網路進行完乙個操作後,忽然發現你忘了monitor session ,或者sh run 出來將近一萬行命令,螢幕往回翻,又翻不了幾頁,這時,你可以修改乙個引數,達到效果,具體如下:
options-----global options---edit default settings進去後點terminal----emulation---下面的scroll back後面的數字自己修改好了,比如我選了10000,你也可以選更大的,再點ok
將linux上檔案傳到pc機上
[root@test root]# sz /etc/rc.local
將pc機上檔案傳到linux上
[root@test root]# rz
選擇要傳送的檔案,確定。
pwd:顯示當前所在的目錄
附:postgres使用
// 進入sql執行環境
[test@test bin]$ ./psql -n dbname -u usrname
stay81=# select count(*) from table1;
count
-------
5986
(1 row)
// 退出,使用結束後退出,不然連線一直被掛起
stay81=# /q
//postgres 資料匯出
[postgres@test bin]$ ./pg_dump -u postgres -t testtable -d testdb > testtable.dump
//postgres 資料匯入
[postgres@test bin]$ ./psql -u postgres -d testdb < testtable.dump
//postgres 資料匯出
[postgres@test bin]$ ./pg_dump -u postgres -d testdb -t testtable -f c -v > testtable.dump
//postgres 資料匯入
[postgres@test bin]$ ./pg_restore -u postgres -d testdb < testtable.dump
//一台主機上將資料庫目錄轉儲到另一台主機上
pg_dump -h host1 -p 5432 dbname | psql -h host2 -p post1 dbname
./pg_dump -u postgres -d testdb1 -t testtable | ./psql -u postgres -d testdb2
-u 為使用者名稱
-d 為db名
-t 為表名稱,如果整個資料庫匯出,不需此項
//php執行
[test@test bin]$ /usr/bin/php -q ./batchstart.php
SecureCRT常用命令
常用命令 一 ls 只列出檔名 相當於dir,dir也可以使用 a 列出所有檔案,包含隱藏檔案。l 列表形式,包含檔案的絕大部分屬性。r 遞迴顯示。help 此命令的幫助。二 cd 改變目錄 cd 進入根目錄 cd 回到自己的目錄 使用者不同則目錄也不同,root為 root,xxt為 home x...
SecureCRT常用命令
常用命令 一 ls 只列出檔名 a 列出所有檔案,包含隱藏檔案。ll a l 列表形式,包含檔案的絕大部分屬性。ll r 遞迴顯示。ll r help 此命令的幫助。ll help 二 cd改變目錄 cd 進入根目錄 cd cd 回到上級目錄 cd pwd 顯示當前所在的目錄 pwd 三.less ...
SecureCRT常用命令
常用命令 一 ls 只列出檔名 a 列出所有檔案,包含隱藏檔案。ll a l 列表形式,包含檔案的絕大部分屬性。ll r 遞迴顯示。ll r help 此命令的幫助。ll help 二 cd改變目錄 cd 進入根目錄 cd cd 回到上級目錄 cd pwd 顯示當前所在的目錄 pwd 三.less ...