1.配置伺服器環境
安裝nginx作為我們的伺服器
nginx -v
systemctl start nginx
systemctl enable nginx
2.安裝git以及node.js
安裝node.js
安裝nodejs有很多種方式,我這邊就說一種
curl -sl | bash -
yum install -y nodejs
安裝完成後執行 node -v 和 npm -v 如果列印版本號則安裝成功
[root@localhost /]# node -v
v10.9.0
[root@localhost /]# npm -v
6.2.0
2.安裝git及配置倉庫
這一部分主要目的是讓我們個人的電腦可以通過ssh方式連線到雲伺服器,然後我們就可以通過命令列方式將我們的部落格po到伺服器上。操作如下:
ssh-keygen
id_rsa 和 id_rsa.pub
cp id_rsa.pub authorized_keys
chmod 600 ~/.ssh/authorized_keys
chmod 700 ~/.ssh
welcome to alibaba cloud elastic compute service !
cd ~
git init --bare blog.git
vi ~/blog.git/hooks/post-receive
git --work-tree=/home/www/website --git-dir=/home/git/blog.git checkout -f
chmod +x ~/blog.git/hooks/post-receive
centos安裝DNS伺服器
最近裝了centos6.5,需要安裝乙個dns伺服器,找了好多文章都,摸索了一上午,終於解決,記錄如下 yum install y bind bind utils 內容如下 options 改為 any allow query 改為 any 在最後加入以下幾行 zone mycloud.lan in...
centos安裝samba伺服器
1.samba簡介 samba是在 linux 和unix 系統上實現 smb協議的乙個免費軟體,由伺服器及客戶端程式構成。smb server messages block 資訊服務塊 是一種在區域網上共享檔案和印表機的一種通訊協議,它為區域網內的不同計算機之間提供檔案及印表機等資源的共享服務。s...
Centos伺服器Redis安裝
1.解壓 root localhost tar zxvf redis 4.0.6.tar.gz 2.編譯 root localhost cd redis 4.0.6 root localhost redis 4.0.6 make 3.將可執行檔案拷貝到 usr local bin 目錄下,這樣就可以...