হাই আমি এনগিনেক্সে নবাগত, আমি এটি আমার সার্ভারে সেট করার চেষ্টা করেছি (উবুন্টু 4 চালাচ্ছি), যার মধ্যে ইতিমধ্যে অ্যাপাচি চলছে।
সুতরাং আমি apt-get install
এটি করার পরে , আমি nginx শুরু করার চেষ্টা করেছি। তারপরে আমি এই বার্তাটি পাই:
Starting nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
configuration file /etc/nginx/nginx.conf test is successful
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
অ্যাপাচি পোর্ট 80 ব্যবহার করছে বলে এটি উপলব্ধি করে।
তারপরে আমি সংশোধন করার চেষ্টা করেছি nginx.conf
, আমি কিছু নিবন্ধগুলি উল্লেখ করেছি, তাই আমি এটির মতো এটি পরিবর্তন করেছি:
server {
listen 8080;
location / {
proxy_pass http://xx.xx.xx.xx:9500;
proxy_set_header Host $host:8080;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Via "nginx";
}
এটি সংরক্ষণ করার পরে এবং আবার এনজিনেক্স শুরু করার চেষ্টা করার পরে, আমি এখনও আগের মতো একই ত্রুটি পেয়েছি। আমি সত্যিই এই সম্পর্কিত কোনও পোস্ট খুঁজে পাচ্ছি না, কোনও ভাল লোকেরা কি কিছুটা আলোকপাত করতে পারে?
আগাম ধন্যবাদ :)
================================================== =======================
আমার কনফিডে সমস্ত সামগ্রী পোস্ট করা উচিত:
user www-data;
worker_processes 1;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
# multi_accept on;
}
http {
include /etc/nginx/mime.types;
access_log /var/log/nginx/access.log;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
tcp_nodelay on;
gzip on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
server {
listen 81;
location / {
proxy_pass http://94.143.9.34:9500;
proxy_set_header Host $host:81;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Via "nginx";
}
}
}
mail {
See sample authentication script at:
http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript
auth_http localhost/auth.php;
pop3_capabilities "TOP" "USER";
imap_capabilities "IMAP4rev1" "UIDPLUS";
server {
listen localhost:110;
protocol pop3;
proxy on;
}
server {
listen localhost:143;
protocol imap;
proxy on;
}
}
মূলত, আমি সার্ভার অংশ যুক্ত করা ছাড়া কিছুই পরিবর্তন করি না।