一场雨

服务器配置

node环境配置

node:http://nodejs.cn/download/package-manager/ 按照官网的配置就好

mongodb环境的配置:http://my.oschina.net/chinaearl/blog/111077?fromerr=MgE0tzjt

tar zxvf mongodb-linux-x86_64-2.2.3.tgz

cd /usr/local/mongodb

mkdir -p ./data/db/

mkdir logs

mongod –dbpath=/usr/local/mongodb/data/db –logpath=/usr/local/mongodb/logs/mongodb.log –fork

或者是./mongod

./mongod来启动mongodb

wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm

yum install nginx

systemctl start nginx

这边是按照默认的配置安装的

nginx的部分配置:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[root@------- ~]# iptables
iptables v1.4.21: no command specified
Try 'iptables -h' or 'iptables --help' for more information
[root@------- ~]# netstat -nap
[root@------- ~]# nginx -s stop
[root@------- ~]# ps -ef | grep nginx
root 11859 11818 0 10:39 pts/1 00:00:00 grep --color=auto nginx
[root@------- ~]# whereis nginx
nginx: /usr/sbin/nginx /etc/nginx /usr/share/nginx
[root@------- ~]# nginx
[root@------- ~]# ps -ef | grep nginx
root 11937 1 0 10:48 ? 00:00:00 nginx: master process nginx
nginx 11938 11937 0 10:48 ? 00:00:00 nginx: worker process
root 11940 11818 0 10:48 pts/1 00:00:00 grep --color=auto nginx
[root@------- ~]#

配置文件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
server {
listen 80;
server_name ---.ichinepsy.com;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
proxy_pass http://localhost:8951;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
server {
listen 80;
server_name ---.ichinepsy.com;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
proxy_pass http://localhost:8952;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

守护进程:

npm install forever -gd

forever –help

forever start app.js

forever stop app.js