最近買了一個(gè)阿里云服務(wù)器,準(zhǔn)備寫(xiě)自己的網(wǎng)站,和將自己的作品放在上面蜀变;開(kāi)始的時(shí)候,感覺(jué)就一個(gè)服務(wù)器應(yīng)該很簡(jiǎn)單熟菲,但是從申請(qǐng)域名到備案,再到服務(wù)器搭建朴恳,沒(méi)想到一波三折抄罕;閑話不多說(shuō),只是記錄我在搭建時(shí)于颖,最簡(jiǎn)單的方法呆贿;
環(huán)境
主機(jī):Centos6.8
服務(wù)器:nginx,nodejs
數(shù)據(jù)庫(kù):mongoDB森渐,mysql
其他:git榨崩,vsftp
安裝vsftp
vsftp是一個(gè)基于Linux系統(tǒng)上的FTP服務(wù)器軟件,至于它的作用就不用多說(shuō)了吧章母,是用來(lái)傳輸文件的母蛛;下面是安裝步驟:
查看是否已安裝vsftp
rpm -qa | grep vsftpd
回車;如果出現(xiàn)如下提示乳怎,代表您已經(jīng)安裝過(guò)vsftp彩郊,可以跳過(guò)該步驟了;
如果什么都沒(méi)有蚪缀,那說(shuō)明您還沒(méi)有安裝秫逝,接著下面的步驟:
安裝vsftp并設(shè)置開(kāi)機(jī)自啟動(dòng)
yum -y install vsftpd
chkconfig vsftpd on
編輯其配置文件
vi /etc/vsftpd/vsftpd.conf
找到如下配置,并更改
anonymous_enable=NO
ascii_upload_enable=YES
ascii_download_enable=YES
chroot_local_user=YES
添加FTP賬號(hào)询枚,在客戶端遠(yuǎn)程請(qǐng)求违帆,傳輸文件:
useradd -s /sbin/nologin -d username //添加用戶名
passwd username //設(shè)置密碼
關(guān)閉防火墻,重啟vsftpd
setenforce 0
service vsftpd restart
當(dāng)您將上面的步驟全部實(shí)現(xiàn)后金蜀,可能還不能傳輸文件刷后,那可能因?yàn)槲哪奈募A沒(méi)有更改的權(quán)限:
chmod -R 777 您的文件夾名
安裝ngnix
我這里安裝ngnix是按照阿里云提供的方法安裝的,地址是 https://help.aliyun.com/document_detail/50700.html?spm=5176.doc50775.6.655.Epe5kw;
添加運(yùn)行ngnix服務(wù)進(jìn)程的用戶
groupadd -r nginx
useradd -r -g nginx nginx
下載源碼包解壓編譯
wget http://nginx.org/download/nginx-1.10.2.tar.gz
tar xvf nginx-1.10.2.tar.gz -C /usr/local/src
yum groupinstall "Development tools"
yum -y install gcc wget gcc-c++ automake autoconf libtool libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed pcre-devel openssl-devel
cd /usr/local/src/nginx-1.10.2
./configure \
--prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/tmp/nginx/client \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--user=nginx \
--group=nginx \
--with-pcre \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module
make && make install
添加至服務(wù)管理列表渊抄,設(shè)置開(kāi)機(jī)自啟尝胆。
chkconfig --add nginx
chkconfig nginx on
安裝git
安裝依賴的庫(kù)
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel
下載git
wget https://github.com/git/git/archive/v2.12.2.tar.gz
tar -zvxf git-2.12.2.gz -C /usr/local/src
cd /usr/local/src/git-2.12.2
./configure --prefix=/usr/local/git
make
make install
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/profile
source /etc/profile
安裝node
我這里是使用NVM安裝node,是Node.js的版本管理軟件护桦,使用戶可以輕松在Node.js各個(gè)版本間進(jìn)行切換含衔。
直接使用git將源碼克隆到本地
git clone https://github.com/cnpm/nvm.git /usr/local/node/.nvm && cd /usr/local/node/.nvm && git checkout `git describe --abbrev=0 --tags`
激活NVM
echo ". /usr/local/node/.nvm/nvm.sh" >> /etc/profile
source /etc/profile
列出Node.js的所有版本
nvm list-remote
安裝Node.js版本
nvm install v6.10.2
查看已安裝Node.js版本,當(dāng)前使用的版本為v6.9.5。
[root@iZuf62didsxigy36d6kjtrZ .nvm]# nvm ls
ngnix反向代理node項(xiàng)目
vi /etc/nginx/nginx.conf
添加如下配置:
server {
listen 80;
server_name www.xxx.com xxx.com;
access_log /var/log/nginx/test.log;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Nginx-Proxy true;
proxy_set_header Connection "";
proxy_pass http://127.0.0.1:3000;
}
}
至此贪染,基本上環(huán)境安裝完成缓呛,不足之處,請(qǐng)各位多多包涵杭隙。至于mysql和mongoDB的安裝强经,請(qǐng)參照以下地址去安裝:
mysql:https://help.aliyun.com/document_detail/50700.html?spm=5176.doc50775.6.655.Epe5kw
mongoDB: http://www.runoob.com/mongodb/mongodb-linux-install.html
原文: http://blog.hawkzz.com/2017/04/19/阿里云VPS搭建Hexo博客/ 作者: hawk_zz