मैं मैक ओएस एक्स में टर्मिनल का उपयोग करके अपाचे को कैसे पुनः आरंभ करूंगा?


13

यह वही है जो मैंने किया है, लेकिन मैं वास्तव में टर्मिनल के लिए नया हूँ:

Jeremys-MacBook-Pro-2:~ jeremyoconnor$ apachectl restart

This operation requires root.

जवाबों:


23

के बाद से अपाचे एक आरक्षित बंदरगाह (पर चलता है 80) कि एक संवेदनशील प्रणाली के स्तर बंदरगाह माना जाता है आप चलाना होगा apachectl restartके माध्यम से sudoइस तरह:

sudo apachectl -k restart

इसमें टाइप करने के बाद आप अपने पासवर्ड के लिए। मान लें कि आपके पास व्यवस्थापक विशेषाधिकार हैं, बस पासवर्ड टाइप करें और अपाचे को पुनरारंभ करना चाहिए। अन्य आदेशों में शामिल हैं startऔर stopयह अपाचे शुरू करने के लिए इस तरह चलाया जा सकता है:

sudo apachectl -k start

और अपाचे को रोकने के लिए इस तरह:

sudo apachectl -k stop

इसके अलावा, यदि आप apachectlबिना किसी चीज़ के बस टाइप करते हैं, तो आपको उन विकल्पों और निर्देशों की एक सूची प्राप्त होगी जिन्हें आप apachectlकमांड के साथ उपयोग कर सकते हैं ; यह मैक ओएस एक्स 10.9.5 से मेरा आउटपुट है:

Usage: /usr/sbin/httpd [-D name] [-d directory] [-f file]
                       [-C "directive"] [-c "directive"]
                       [-k start|restart|graceful|graceful-stop|stop]
                       [-v] [-V] [-h] [-l] [-L] [-t] [-T] [-S]
Options:
  -D name            : define a name for use in <IfDefine name> directives
  -d directory       : specify an alternate initial ServerRoot
  -f file            : specify an alternate ServerConfigFile
  -C "directive"     : process directive before reading config files
  -c "directive"     : process directive after reading config files
  -e level           : show startup errors of level (see LogLevel)
  -E file            : log startup errors to file
  -v                 : show version number
  -V                 : show compile settings
  -h                 : list available command line options (this page)
  -l                 : list compiled in modules
  -L                 : list available configuration directives
  -t -D DUMP_VHOSTS  : show parsed settings (currently only vhost settings)
  -S                 : a synonym for -t -D DUMP_VHOSTS
  -t -D DUMP_MODULES : show all loaded modules 
  -M                 : a synonym for -t -D DUMP_MODULES
  -t                 : run syntax check for config files
  -T                 : start without DocumentRoot(s) check
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.