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 بلادي الرقمي الحياة المنتديات .



2 Responses to “Request URL /server-status or 404 Page Not Found Apache Error” 2 الردود على "طلب عنوان / خادم الوضع او 404 صفحة لم يتم العثور على خطأ أباتشي"

  1. LYNDA RIDLEY ليندا ريدلي
    December 28th, 2007 01:37 ديسمبر 28th ، 2007 01:37
    1

    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 ليندا

  2. admin الادارية
    December 28th, 2007 02:23 ديسمبر 28th ، 2007 02:23
    2

    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. يبدو ان موقعك هو وجود خطأ في التكوين على خادم الويب ، وربما تستضيف افتراضية أو إعادة توجيه خطأ.

Leave a Reply ترك الرد

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> يمكنك استخدام هذه العلامات : <ahref="" title=""> <abbrtitle=""> <acronymtitle=""> <b><blockquotecite=""> <cite><code><ديل datetime = ""> <em><i><qcite=""> <strike><strong>

Subscribe without commenting اكتتاب دون التعليق


Custom Search

New Articles المواد الجديدة

Incoming Search Terms for the Article ابحث الواردة للشروط المنصوص عليها في المادة

The requested URL / was not found on this server. وقد طلبت عنوان / لم يتم العثور على هذا الخادم. - -- The requested URL was not found on this server. عنوان المطلوب لم يتم العثور على هذا الخادم. - -- The requested URL was not found on this server. عنوان المطلوب لم يتم العثور على هذا الخادم. - -- The requested URL was not found on this server عنوان المطلوب لم يتم العثور على هذا الخادم - -- The requested URL /server-status was not found on this server. وقد طلبت عنوان / خادم الوضع لم يتم العثور على هذا الخادم. - -- requested url not found on this server طلب رابط لم يتم العثور على هذا الخادم - -- The requested URL returned error: 404 وقد عاد وطلب عنوان خطأ : 404 - -- The requested URL /server-status was not found on this server وقد طلبت عنوان / خادم الوضع لم يتم العثور على هذا الخادم - -- apache status url مركز اباتشي رابط - -- "The requested URL /apache2-default/ was not found on this server." "وطلب عنوان / apache2 تقصير / لم يتم العثور على هذا الخادم." - -- apache server-status 404 اباتشي خادم المركز 404 - -- server-status 404 خادم المركز 404 - -- The requested URL was not found on this server عنوان المطلوب لم يتم العثور على هذا الخادم - -- apache was not found on this server. اباتشي لم يتم العثور على هذا الخادم. - -- The requested URL /server-status was not found on this server وقد طلبت عنوان / خادم الوضع لم يتم العثور على هذا الخادم - -- The requested URL / was not found on this server وقد طلبت عنوان / لم يتم العثور على هذا الخادم - -- The requested URL was not found on this server عنوان المطلوب لم يتم العثور على هذا الخادم - -- The requested URL was not found on this server. عنوان المطلوب لم يتم العثور على هذا الخادم. - -- requested URL returned error: 404 عاد وطلب عنوان خطأ : 404 - -- apache server-status not found اباتشي خادم الوضع لم يتم العثور على - -- The requested URL /was not found on this server. وقد طلبت عنوان / لم يتم العثور على هذا الخادم. - -- apachectl status مركز apachectl - -- apache set up server-status اباتشي انشاء خادم الوضع - -- Not Found Apache Server at Port 80 لم يتم العثور على الخادم اباتشي في الميناء 80 - -- The requested URL /--WEBBOT-SELF-- was not found on this server. وقد طلبت عنوان / -- WEBBOT ذاتية -- لم يتم العثور على هذا الخادم. - -- The requested URL / was not found on this server. وقد طلبت عنوان / لم يتم العثور على هذا الخادم. apache2 apache2 - -- The requested URL was not found on this server dimdim عنوان المطلوب لم يتم العثور على هذا الخادم dimdim - -- mod_status 404 mod_status 404 - -- the requested url not found on this server المطلوب لم يتم العثور على عنوان هذا الخادم - -- The requested URL not found on this server. المطلوب لم يتم العثور على عنوان هذا الخادم. - -- How to enable server-status on apache كيفية تمكين الوضع على الخادم اباتشي - -- he requested URL /server-status was not found on this server. طلب عنوان / خادم الوضع لم يتم العثور على هذا الخادم. - -- how can remove The requested URL returned error: 404 كيف يمكن إزالة الخطأ وعاد وطلب عنوان : 404 - -- apache server status page not found اباتشي خادم حالة لم يتم العثور على الصفحة - -- enable server-status apache تمكين الوضع الخادم اباتشي - -- apache The requested URL was not found on this server. اباتشي وقد طلبت عنوان لم يتم العثور على هذا الخادم. - -- apache server-status virtual host اباتشي خادم الوضع الافتراضي المضيفة - -- server Request url طلب عنوان الخادم - -- The requested URL /nagios2 was not found on this server. وقد طلبت عنوان / nagios2 لم يتم العثور على هذا الخادم. - -- The requested resource (/server-status) is not available الموارد المطلوبة (/ خادم الوضع) ليست متاحة - -- The requested URL was not found on the server عنوان المطلوب لم يتم العثور على الخادم - -- Setup Apache 2.0 error URL not Found أباتشي 2.0 الإعداد خطأ لم يتم العثور على عنوان - -- server status apache مركز خادم اباتشي - -- says The requested URL was not found on this server. وتقول طلبت عنوان لم يتم العثور على هذا الخادم. - -- server-status apache الوضع الخادم اباتشي - -- apache The requested URL was not found on this server اباتشي وقد طلبت عنوان لم يتم العثور على هذا الخادم - -- The requested URL /collection/Articles & Preprints was not found on this server. وقد طلبت عنوان / جمع / المواد & المسودات لم يتم العثور على هذا الخادم. - -- The requested URL was not found on this server. عنوان المطلوب لم يتم العثور على هذا الخادم. apache أباتشي - -- the requested URL /server-status not found طلب عنوان / خادم الوضع لم يتم العثور على - -- apache server-status command line اباتشي خادم الوضع سطر الأوامر - --