命令列下,使用ssh 遠端登入伺服器
ssh '使用者名稱'@'ip位址' #不用加'號,這裡是為了作區分
'使用者名稱'@'ip位址''s password: ***
專案所在伺服器目錄
/home/jimsir/sites/www.lovejim.cn/djangoblog/jimweb/jimweb
gunicorn **部署
django-haystack框架結合中文jieba分詞和英文whoosh引擎實現全文檢索功能(參考:
pip install whoosh # 純python編寫的全文搜尋引擎
pip install jieba # 一款免費的中文分詞包
pip install django-haystack # 全文檢索的框架
啟用虛擬環境
source env/bin/activate
source /home/jimsir/sites/www.lovejim.cn/env/bin/activate
ubuntu下啟動/重啟/停止apache伺服器
task: start apache 2 server /啟動apache服務
# /etc/init.d/apache2 start
or$ sudo /etc/init.d/apache2 start
task: restart apache 2 server /重啟apache服務
# /etc/init.d/apache2 restart
or$ sudo /etc/init.d/apache2 restart
task: stop apache 2 server /停止apache服務
# /etc/init.d/apache2 stop
or$ sudo /etc/init.d/apache2 stop
django 忘記管理員賬戶和密碼的解決辦法 : SSH遠端連線伺服器
第一步 伺服器第一次開啟ssh服務,則會自動建立 etc ssh ssh host 公鑰檔案,以及私鑰檔案 第三步 伺服器將自己的公鑰檔案傳送給客戶端 明文 etc init.d ssh restart ssh f o p 帳號 ip 命令 引數 意義 f 不登入,直接在遠端伺服器執行 後面的命令 ...
ssh連線遠端伺服器
平常登陸遠端伺服器,每次都要輸入密碼,感覺挺麻煩的,下面提供一種相對便利的方式 windows 感覺xshell挺好的ubuntu sudo apt install expectmac brew install expect bin bash set timeout 30 spawn ssh l 使...
SSH連線遠端伺服器
ssh username ip p port提示輸入密碼後,即可登入 客戶端生成公鑰 私鑰 ssh keygen生成的公鑰 私鑰 存放在 ssh目錄下 將公鑰複製到伺服器上,追加到.ss 件夾下authorized keys檔案的末尾 scp p port ssh id rsa.pub userna...