1. 程式人生 > >網站運維記錄

網站運維記錄

suse 安裝 hup scrapy wrapper rest 後臺 sync nohup

1.nfs
客戶端:
安裝:yum install nfs-utils -y
掛載
mount -t nfs 10.10.21.103:/home/elasticsearch_data/ /home/esuser/data //es數據
mount -t nfs 10.10.21.103:/home/wwwroot/newsshop/public/files_pro/ /home/wwwroot/newsshop/public/files //圖片數據
服務端:
安裝 :rpc nfs
配置:
vi /etc/exports
/home/elasticsearch_data 10.10.21.0/24(rw,sync,anonuid=1004,anongid=1004)
/home/wwwroot/newsshop/public/files_pro 10.10.21.0/24(rw,sync,all_squash,anonuid=0,anongid=0)
啟動:(註意先後)
systemctl start rpcbind.service
systemctl start nfs.service
檢查掛載情況:
showmount

2.elasticsearch啟動
sudo esuser
cd /home/esuser/elasticsearch/bin
nohup ./elasticsearch >/dev/null 2>&1 & 後臺啟動

3.python虛擬機
啟動:source /usr/local/python3/bin/virtualenvwrapper.sh
選擇虛擬機:workon spider

4.爬蟲系統(scrpay+scrapyd+spiderkeeper)選擇了虛擬機後才能運行:

nohup scrapyd > /dev/null 2>&1 & 後臺運行scrapyd
nohup spiderkeeper > /dev/null 2>&1 & 後臺運行spiderkeeper
瀏覽器域名訪問:spiders.itaogao.com

5.rabbitmq啟動
systemctl restart rabbitmq-server.service
然後瀏覽器訪問

6.svn
啟動:svnserve -d -r /root/svn/
鉤子:
cd /root/svn/repo/hooks
svn co svn://10.10.21.103/repo /home/wwwroot/newsshop

網站運維記錄