用nginx反向代理,后台用supervisor管理tornado进程,结果启动nginx后报错
nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
1
tinypig Dec 27, 2013 是不是nginx已经在运行了,可以看看8080是谁在占用。
|
2
9hills Dec 27, 2013
98: Address already in use
#RTFE |
4
tinypig Dec 27, 2013 你如果apt装的话就是会自动运行的。
|
7
jasontse Dec 27, 2013 via iPad # apt-get -y install chkconfig
# service nginx stop # chkconfig nginx off |