دستور ری استارت ، استارت و استاپ وب سرور آپاچی در لینوکس
دستور ری استارت ، استارت و استاپ وب سرور آپاچی در لینوکس
سوال ؟ چطور میتونم آپاچی رو در سرور های لینوکسی Debian / Ubuntu / CentOS / RHEL / Fedora ری استارت کنم؟
برای Restart آپاچی در لینوکس یکی از این دستورات را وارد کنید
# /etc/init.d/apache2 restart
آگر دسترسی بالاتر نیاز داشت با پیشوند sudo لینوکس را مجبور به اجرای ری استارت کنید
$ sudo /etc/init.d/apache2 restart
اگر دستور بالا کار ساز نبود ، سرویس آپاچی رو ری استارت کنید
$ sudo service apache2 restart
برای سرور های Redhat
/etc/init.d/httpd restart
برای start آپاچی در لینوکس یکی از این دستورات را وارد کنید.
# /etc/init.d/apache2 start
$ sudo /etc/init.d/apache2 start
$ sudo service apache2 start
Debian/Ubuntu Linux systemd users
از دستور systemctl برای Debian Linux version 8.x+ or Ubuntu Linux version Ubuntu 15.04+ یاا بالاتر استفاده کنید :
## Start command ## systemctl start apache2.service ## Stop command ## systemctl stop apache2.service ## Restart command ## systemctl restart apache2.service
دستورات مربوط به CentOS/RHEL (Red Hat) Linux version 4.x/5.x/6.x و نسخه های قدیمی تر
## Start ## service httpd start ## Stop ## service httpd stop ## Restart ## service httpd restart
دستورات مربوط به CentOS/RHEL (Red Hat) Linux version 7.x یا بالاتر
Most modern distro now using systemd, so you need to use the following command:
## Start command ## systemctl start httpd.service ## Stop command ## systemctl stop httpd.service ## Restart command ## systemctl restart httpd.service
روش کلی start/stop/restart Apache در سرور Linux/Unix
The syntax is as follows (must be run as root user):
## stop it ## apachectl -k stop ## restart it ## apachectl -k restart ## graceful restart it ## apachectl -k graceful ## Start it ## apachectl -f /path/to/your/httpd.conf apachectl -f /usr/local/apache2/conf/httpd.conf