เปิดใช้งาน ngrok เมื่อเปิดเครื่อง
ตามนั้นแหละครับ... 🤨 มาเริ่มกันเลยดีกว่า!!
เราก็มาเตรียม Software กันดีกว่า:
- Linux OS ( มันต้องใช้อยู่แล้วแหละ )
- ngrok ( เพราะว่าวันนี้จะให้ ngrok ทำงาน )
- Text Editor เช่น Vim, VS Code, Nano, etc.. ( เอามาเขียนไฟล์ Services )
มาดูวิธีสร้าง Services กันดีกว่า!!!:
- เปิดมาก็สร้างไฟล์ก่อนเลย ใช้ Text Editor ตัวไหนก็ได้ Code:
[Unit]
Description=(Service Descriptions)
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
ExecStart=(Start Execution)
[Install]
WantedBy=multi-user.target
เปลี่ยน (Service Descriptions) และ (Start Execution)
- Service Descriptions → คำอธิบายของ Services
- Start Execution → คำสั่งที่ต้องการที่จะรัน
แล้ว Save ไปที่
/etc/systemd/system/(ชื่ออะไรก็ได ้แต่อย่าซ้ำกับที่มีอยู่แล้ว).service
sudo vi /etc/systemd/system/ngrok-auto.service
[Unit]
Description=ngrok auto-open
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
ExecStart=/opt/ngrok-linux64 --proto=tcp cnx 22
[Install]
WantedBy=multi-user.target
- เปิดใช้งาน Service แล้วให้เปิดใช้งานเมื่อบูต เปิดใช้งาน Service: !Start Service
พอเรา Enable มัน มันก็จะ Ouput Symlink ออกมา
จบแล้วครับ สวัสดีคร้าบบ!!!
Top comments (0)