আমার যে সমস্যা হচ্ছে তা নিয়ে আমি হতবাক হয়েছি এবং এর সমাধানে সহায়তার জন্য সত্যই প্রশংসা করব।
আমার একটি আইম্যাক চলছে ম্যাক ওএস এক্স ম্যাভারিক্স 10.9.2
আমি সার্ভারের রুট / ভলিউম / সাইটগুলি / থেকে দস্তাবেজগুলি পরিবেশন করতে আমার অ্যাপাচি সেট আপ করেছি
আমি ডায়নামিক ভার্চুয়াল হোস্টগুলি ব্যবহার করছি, সুতরাং কেবল * .dev প্রত্যয় সহ একটি ডিরেক্টরি যুক্ত করে এটি ভার্চুয়াল হোস্টে পরিণত হয়।
আমার হোস্ট ফাইলটি বেশ বেসিক:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
আমার httpd-vhosts.conf ফাইলটি নিম্নরূপ:
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
#allow access to the Hosts directory where your sites are
<Directory "/Volumes/sites">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
#you could configure the following to only allow access from localhost
Order allow,deny
Allow from all
</Directory>
#get the server name from the Host: header
UseCanonicalName Off
VirtualDocumentRoot /Volumes/sites/%0/
এই সব কাজ। এবং আমি আমার httpd.conf ফাইলটিতে কোনও পরিবর্তন করি নি।
তবুও আমি লোকালহোস্ট লোড করতে পারি না
আমি 127.0.0.1 লোড করতে পারি না
sudo lsof -i :80 | egrep "PID|LISTEN"
80 পোর্টে কোনও পিআইডি শুনছে কিনা তা দেখার জন্য আমি কমান্ডটি চালিয়েছি The ফলাফলগুলি খালি ছিল।
আমি অ্যাপাচি পুনরায় চালু করার চেষ্টা করেছি এবং থামাতে এবং তারপরে অ্যাপাচি ব্যবহার করে শুরু করার চেষ্টা করেছি
sudo apachectl stop
sudo apachectl start
sudo apachectl restart
কিছুই কাজ করে না।
কমান্ড জারি করে অ্যাপাচি চলছিল কিনা তা আমি পরীক্ষা করে দেখলাম httpd -v
প্রত্যাবর্তনটি ছিল:
Server version: Apache/2.2.26 (Unix)
Server built: Dec 10 2013 22:09:38
আমি নিম্নলিখিত ফলাফলের সাথে কমান্ড লাইনের মাধ্যমে লোকালহোস্ট এবং 127.0.0.1 এ সংযোগ করার চেষ্টা করেছি:
alisamii at alisamii in ~
$ telnet localhost 80
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
Trying fe80::1...
telnet: connect to address fe80::1: Connection refused
telnet: Unable to connect to remote host
alisamii at alisamii in ~
$ telnet 127.0.0.1 80
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
telnet: Unable to connect to remote host
alisamii at alisamii in ~
$ lynx http://localhost
Looking up localhost
Making HTTP connection to localhost
Alert!: Unable to connect to remote host.
lynx: Can't access startfile http://localhost/
alisamii at alisamii in ~
$ lynx http://127.0.0.1
Looking up 127.0.0.1
Making HTTP connection to 127.0.0.1
Alert!: Unable to connect to remote host.
lynx: Can't access startfile http://127.0.0.1/
alisamii at alisamii in ~
সাহায্য করুন.