เป็นคำสั่งรีสตาร์ทเซอร์วิสของ Nginx บน Linux Command Line เหมาะสำหรับผู้ดูแลเซิฟเวอร์ System Admin
สามารถใช้ได้กับ Linux หลายตะกูล Debian/Ubuntu/RHEL/CentOS Linux
เพียงเลือก 1 บรรทัดใดก็ได้ โดยก็อปเอาเฉพาะข้อความด้านหลัง # ไปวาง Command Line แล้วกด Enter:
# /etc/init.d/nginx restart
หรือ
# /etc/init.d/nginx reload
หรือ
# service nginx restart
หรือ
# service nginx reload
สุดท้ายเป็นคำสั่งต้นฉบับท...
How to CentOS rebooting the server
โดย LINUX
How to CentOS rebooting the server: ทิปนี้เหมาะสำหรับผู้ที่ใช้ VPS ใช้ SSH Remote เข้าไปแล้วสั่รีสตาร์ทด้วยคำสั่งดังนี้
1. To reboot a server from the command line, run:
sudo shutdown -r now
2. To restart Apache, run:
sudo service apache2 restart...
คำค้น:
CentOS Reboot Server
Command Line ระหว่าง Windows และ Linux
โดย LINUX
เปรียบเทียบคำสั่ง Command Line ระหว่าง Windows และ Linux
DOS
UNIX
หมายเหตุ
ATTRIB +-attrib file
chmod mode file
ระบบ Permission แตกต่างกัน
BACKUP
tar cvf file file
การทำงานแตกต่างกัน
CD dir
cd dir/
คล้ายคลึงกัน
COPY file1 file2
cp file1 file2
เหมือนกัน
DEL file
rm file
เหมือนกัน
DELTREE
rm -R file
เหมือนกัน
DIR
ls หรือ ls -al และ du , df
di...