SSH Access (สำหรับ Linux)
ลูกค้า PhalconHost ที่ใช้งาน โฮสติ้ง 4 ภาษา, VPS และ VPS SSD ที่ใช้ระบบปฏิบัติการ CentOS, Ubuntu, Debian ท่านสามารถเข้าจัดการ Server ผ่าน Commandline โดยใช้คำสั่งผ่าน SSH ซึ่งโปรแกรมที่ใช้คำสั่ง SSH บนเครื่องผู้ใช้งาน มีให้เลือกใช้งานได้หลากหลายตัว เช่น
Windows = putty, xshell
Mac OSX = Terminal
การเข้าใช้งาน Linux Server ผ่าน SSH
ssh username@IP // ssh เข้าไปที่ VPS (port 22) ssh username@IP -p 1234 // ssh เข้าไปที่ VPS (port 1234) su - // สลับการเข้าใช้งานแบบ root บน Centos sudo su - // สลับการเข้าใช้งานแบบ root บน Ubuntu/Debian
คำสั่งที่ใช้บ่อยๆ ใน Linux Server (CentOS, Ubuntu, Debian)
hostname // ดูชื่อเครื่อง ifconfig // ดู ip free -m // ดูข้อมูลการใช้งาน RAM df -h // ดูข้อมูลการใช้งาน Harddisk top // ดูข้อมูลการใช้งาน process ทั้งหมด ps aux |grep "httpd" // ดูว่ามี process ชื่อ "httpd" ทำงานอยู่หรือไม่ kill -9 123456 // ทำลาย process id: "123456" service httpd start|stop|restart|status // สั่งให้ "httpd" ทำงาน|หยุดทำงาน|รีสตาร์ท|เช็คสถานะ shutdown -r now // restart vps vi file.txt // editor สำหรับ จัดการไฟล์ rm file.txt // ลบไฟล์ file.txt move file.txt file1.txt // แก้ไขไฟล์ file.txt เป็นชื่อ file1.txt mkdir -p dir1/dir2 // สร้างโฟลเดอร์ dir1/dir2 cp file.txt dir1 // copy ไฟล์ไปไว้ในโฟลเดอร์ dir1 cat messages.log // ดูข้อมูลในไฟล์ messages.log tail -f messages.log // ดูข้อมูลในไฟล์ messages.log แบบ realtime