Difference between revisions of "Starting and Stopping Asterisk"

From AllStarLink Wiki
Jump to navigation Jump to search
imported>N8THN
m
 
Line 3: Line 3:
  
 
'''Stopping Asterisk:'''
 
'''Stopping Asterisk:'''
astdn.sh
+
systemctl stop asterisk
;or
+
 
service asterisk stop
 
 
'''Starting Asterisk:'''
 
'''Starting Asterisk:'''
astup.sh
+
systemctl start asterisk
;or
+
 
service asterisk start
 
 
'''Restarting Asterisk:'''
 
'''Restarting Asterisk:'''
astres.sh
+
systemctl restart asterisk
;or
+
 
service asterisk restart
 
 
'''Status of Asterisk:'''
 
'''Status of Asterisk:'''
service asterisk status
+
systemctl status asterisk
 +
 
 
Asterisk is automatically started when the system completes the booting process
 
Asterisk is automatically started when the system completes the booting process

Latest revision as of 23:11, 29 June 2024

There a couple of ways to start, stop, or restart asterisk.

Stopping Asterisk: systemctl stop asterisk

Starting Asterisk: systemctl start asterisk

Restarting Asterisk: systemctl restart asterisk

Status of Asterisk: systemctl status asterisk

Asterisk is automatically started when the system completes the booting process