Request URL /server-status or 404 Page Not Found Apache Error طلب عنوان / خادم الوضع او 404 صفحة لم يتم العثور على خطأ أباتشي
In Apache web server, when an administrator wants to check the Apache server status with the command “apachectl status” or “service httpd fullstatus” at shell prompt, the following error may occur: في أباتشي خادم الويب ، عندما يريد مدير لفحص حالة الخادم اباتشي مع قيادة "apachectl مركز" أو "خدمة httpd fullstatus" في قذيفة السريع ، قد يحدث الخطأ التالية :
Not Found لم يتم العثور على
The requested URL /server-status was not found on this server. وقد طلبت عنوان / خادم الوضع لم يتم العثور على هذا الخادم.
If you request the Apache status from web page by viewing http://domain_name/server-status link location, a 404 page not found error will be returned by web browser. إذا كنت تطلب من مركز اباتشي صفحة ويب عن طريق مشاهدة http://domain_name/server-status ربط موقع ، 404 صفحة لم يتم العثور على خطأ وسوف تعاد من قبل متصفح الإنترنت.
There are several reasons why this problem can occurred. هناك عدة اسباب لهذه المشكلة يمكن أن يحدث. First thing to check is to ensure that the mod_status status handler is properly setup and loaded in httpd.conf configuration file. أول شيء هو لفحص للتأكد من أن المعالج هو مركز mod_status سليم الإعداد وتحميلها في ملف httpd.conf. Using APXS, the following 2 lines must exist: باستخدام APXS ، 2 التالية يجب أن تكون هناك خطوط :
LoadModule status_module /path/to/apache/modules/mod_status.so LoadModule status_module / الطريق / الى / اباتشى / وحدات / mod_status.so
AddModule mod_status.c AddModule mod_status.c
If the lines exist, the problem probably lies on virtual host declaration. وإذا كانت الخطوط موجودة ، فإن المشكلة تكمن ربما فعلية على إعلان المضيفة. As a side note, you can also check if the status handler is been activated to show more information (but will slow down a busy server) by locating the following line in httpd.conf (default to off): باعتبارها الجانب علما ، يمكنك أيضا معرفة ما إذا كان المعالج هو حالة تم تنشيط لاظهار المزيد من المعلومات (ولكن سيتباطأ مزدحم الخادم) قبل العثور على السطر التالي في httpd.conf (التقصير إلى قبالة) :
ExtendedStatus On وفي ExtendedStatus
For virtual host for server-status, ensure that the following line exists in your Apache configuration file: لالافتراضية المضيف لخادم الوضع ، وضمان أن السطر التالي موجود في ملف التكوين الخاص بك اباتشي :
SetHandler server-status SetHandler خادم الوضع
Order allow,deny من أجل السماح ، تنكر
Deny from all حرمان من جميع
Allow from localhost السماح من localhost
You can change the localhost to your domain name such as .example.com (including dot in front of domain) to allow access from domain address. يمكنك تغيير localhost إلى اسم المجال الخاص بك مثل. example.com (بما في نقطة امام الملك) من أجل إتاحة إمكانية وصول مجال معالجة. Else localhost restrict access doesn’t allow public access to server-status, and only command shell access locally is possible. آخر localhost تقييد الوصول لا تسمح وصول الجمهور إلى خادم الوضع ، وإلا قيادة قذيفة الوصول محليا هو ممكن.
Note that also if you use NameVirtualHost *:80 directive, or any *:port directive to run multiple name based virtual hosts, this configuration does not allow server-status on any of the publicly accessible addresses. علما أيضا أن إذا كنت تستخدم NameVirtualHost * : 80 التوجيه ، أو أي * : ميناء التوجيه لتشغيل العديد من اسم وتستضيف مقرها الافتراضية ، هذا التكوين لا يسمح خادم الوضع على أي من العناوين في متناول الجمهور. The reason is that the first Virtual Host in the directive is considered the “Default Virtual Host”, and any unknown entries on the NameVirtualHost space whenever user or process attempts to access port 80 on any IP address, will go to this virtual host by default. والسبب هو أن الأولى الافتراضي المضيف في توجيه تعتبر "المضيف الافتراضي الافتراضي" ، وغير معروف أي قيود على NameVirtualHost الفضاء كلما كان المستخدم أو عملية المحاولات للوصول إلى 80 ميناء على أي معالجة الملكية الفكرية ، سوف تذهب إلى هذا التقصير من جانب المضيف الافتراضية . Hence the 404 page not found error is returned. ومن ثم ، 404 صفحة لم يتم العثور على خطأ هو عاد. Furthermore the server-status configuration cannot be placed inside of a VirtualHost directive to be read from a full domain name. وعلاوة على الخادم بين مركز التكوين لا يمكن أن توضع داخل VirtualHost من التوجيه يمكن ان تقرأ من اسم نطاق كامل.
There are 2s solution and workarounds for this scenario, either by making the server listen on an alternative port (such as port 8080), or allowing only internal or local access. وهناك 2s وworkarounds حل لهذا السيناريو ، إما عن طريق الخادم للاستماع على الموانئ البديلة (مثل الميناء 8080) ، أو السماح فقط الداخلية المحلية أو الوصول.
To change to another port, simply adding “Listen 8080″ to the configuration, and you can access the server status from external by using http://domain:8080/server-status in any web browser. لتغيير إلى ميناء آخر ، ببساطة واضاف "إستمع 8080" إلى التشكيل ، ويمكنك الوصول إلى حالة من الخادم الخارجي عن طريق استخدام http://domain:8080/server-status في أي متصفح ويب.
To allow only local access for commands such as ‘apachectl status’ or ’service httpd fullstatus’, simply switch each * to the actual IP address to work from, then accessing from localhost (127.0.0.1) will work. السماح فقط للقيادة المحلية وصول مثل 'apachectl مركز' أو 'خدمة httpd fullstatus' ، ببساطة كل * التحول إلى الملكية الفكرية الفعلية لعمل من معالجة ، ثم الوصول من localhost (127.0.0.1) سوف تعمل.
For example, change from: فعلى سبيل المثال ، تغيير من :
NameVirtualHost *:80 * NameVirtualHost : 80
to إلى
NameVirtualHost 10.0.0.3:80 NameVirtualHost 10.0.0.3:80
Once configuration file is modified correctly, restart Apache HTTPD server. مرة واحدة هي تعديل ملف التكوين بشكل صحيح ، واستئناف اباتشي HTTPD الخادم.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. هام : هذه هي آلة الصفحة المترجمة التي تقدم "كما هي" دون ضمان. Machine translation may be difficult to understand. الترجمة الآلية قد يكون من الصعب فهم. Please refer to يرجى الرجوع إلى original English article المادة الانكليزية الأصلية whenever possible. كلما كان ذلك ممكنا.
Share and contribute or get technical support and help at وحصة المساهمة أو الحصول على الدعم التقني والمساعدة في My Digital Life Forums بلادي الرقمي الحياة المنتديات .
Related Articles المواد ذات الصلة
- Apache Status (whm-server-status) in cPanel WebHost Manager Returns Blank Page مركز اباتشي (whm - خادم الوضع) في cPanel WebHost مدير العودة بياض الصفحة
- cPanel WHM Failed to Receive Status Information From Apache Error cPanel WHM فشلت في الحصول على المعلومات من مركز اباتشي خطأ
- Apache Warn NameVirtualHost *:80 Has No VirtualHosts Error When Start اباتشي تحذير NameVirtualHost * : 80 لا VirtualHosts خطأ عند بدء
- winnt_accept: Asynchronous AcceptEx failed Error in Apache Log winnt_accept : غير تزامني AcceptEx فشلت خطأ في سجل أباتشي
- Improve Apache Web Server Security: Use ServerTokens and ServerSignature to Disable Header تحسين الأمن اباتشي ملقم الويب : استخدام ServerTokens وتعطيل رأس ServerSignature
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 4 تركيب ملقم الويب في فري بي 6.0 مع اباتشي 2.2 ، 5.0 وماي. س. ك PHP 5 -- الجزء 4
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 5 تركيب ملقم الويب في فري بي 6.0 مع اباتشي 2.2 ، 5.0 وماي. س. ك PHP 5 -- الجزء 5
- Running apachectl status Returns lynx: not found Error apachectl تشغيل مركز العودة الوشق : لم يتم العثور على خطأ
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 2 تركيب ملقم الويب في فري بي 6.0 مع اباتشي 2.2 ، 5.0 وماي. س. ك PHP 5 -- الجزء 2
- Installing Web Server in FreeBSD 6.0 with Apache 2.2, MySQL 5.0 and PHP 5 - Part 3 تركيب ملقم الويب في فري بي 6.0 مع اباتشي 2.2 ، 5.0 وماي. س. ك PHP 5 -- الجزء 3

































December 28th, 2007 01:37 ديسمبر 28th ، 2007 01:37
Hi, مرحبا ،
I hope you dont mind me asking you, but i’ve been searching on Google for some help as i’m totally stuck - and then I found you !! وآمل أن لديك سيرة ذاتية الاعتبار لي يطلب منك ، ولكن لقد تم البحث على Google لمساعدة بعض كما أنا تماما تمسك -- وبعد ذلك وجدت لكم!!
My website went down about 3 weeks ago and I cant get in touch wih the man who set my site up for me. موقع الويب الخاص بي انخفض نحو 3 أسابيع وأنا غير قادر على الحصول على اتصال wih الرجل الذي حدد موقعي حتى بالنسبة لي.
I’m trying to get onto my site and its just telling me that the certificate has expired, but I dont know what to do. أحاول البدء في موقعي فقط وتقول لي أن الشهادة قد انتهت صلاحيتها ، ولكن لا اعلم ما يجب فعله.
I am desperate for help but am not too good on computers so dont understand all the ‘lingo’ and any advise would need to be in simple terms. أنا يائسة لمساعدة ولكن لست جيدة جدا على الكمبيوتر حتى لا أميل فهم جميع 'لغة' وإسداء المشورة أي أن هناك حاجة إلى بعبارات بسيطة.
I would be very very grateful if you could point me in the right direction. وسأكون ممتنة جدا جدا لو لي نقطة في الاتجاه الصحيح.
Thanks hopefully, وبفضل نأمل ،
Lynda ليندا
December 28th, 2007 02:23 ديسمبر 28th ، 2007 02:23
You can still visit even though SSL certificate is expired. لا يزال بإمكانك زيارة خدمة تصميم المواقع على الرغم من الشهادة منتهية صلاحيتها. Just accept the security warning. مجرد قبول أمن إنذار. Looks like your site is having configuration error on web server, probably virtual hosts or redirection error. يبدو ان موقعك هو وجود خطأ في التكوين على خادم الويب ، وربما تستضيف افتراضية أو إعادة توجيه خطأ.