<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Asterisk on Blog GoHugo de Fredô : Linux, Proxmox, IA, Trail, Course, Randonnée, Gravel, Ski de Randonnée</title>
    <link>https://move.cyber-neurones.org/tags/asterisk/</link>
    <description>Recent content in Asterisk on Blog GoHugo de Fredô : Linux, Proxmox, IA, Trail, Course, Randonnée, Gravel, Ski de Randonnée</description>
    <generator>Hugo</generator>
    <language>fr</language>
    <lastBuildDate>Wed, 27 Jul 2022 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://move.cyber-neurones.org/tags/asterisk/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Asterisk : Fichier asterisk.service pour Oracle Linux 8.6</title>
      <link>https://move.cyber-neurones.org/post/2022/07/2022-07-27-asterisk-fichier-asterisk-service-pour-oracle-linux-8-6/</link>
      <pubDate>Wed, 27 Jul 2022 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2022/07/2022-07-27-asterisk-fichier-asterisk-service-pour-oracle-linux-8-6/</guid>
      <description>&lt;p&gt;Voici le fichier que j&amp;rsquo;utilise dans &lt;strong&gt;/usr/lib/systemd/system/asterisk.service&lt;/strong&gt; :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;[Unit]&#xA;Description=Asterisk PBX and telephony daemon.&#xA;After=network.target&#xA;&#xA;[Service]&#xA;ExecReload=/usr/sbin/asterisk -rx &amp;#34;core reload&amp;#34;&#xA;ExecStart=/usr/sbin/asterisk -mqf -C  /etc/asterisk/asterisk.conf&#xA;ExecStop=/usr/sbin/asterisk -rx &amp;#34;core stop now&amp;#34;&#xA;PIDFile=/var/run/asterisk/asterisk.pid&#xA;Restart=on-failure&#xA;RestartSec=10&#xA;Type=simple&#xA;TimeoutStartSec=300&#xA;&#xA;Environment=HOME=/var/lib/asterisk&#xA;LimitCORE=infinity&#xA;LimitNOFILE=65536&#xA;WorkingDirectory=/var/lib/asterisk&#xA;User=asterisk&#xA;Group=asterisk&#xA;PrivateTmp=false&#xA;NoNewPrivileges=yes&#xA;ProtectHome=no&#xA;&#xA;[Install]&#xA;WantedBy=multi-user.target&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai pas fini avec le fichier &lt;strong&gt;/etc/asterisk/modules.conf ,&lt;/strong&gt; j&amp;rsquo;ai quelques problèmes dans le build :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;;&#xA;; Asterisk configuration file&#xA;;&#xA;; Module Loader configuration file&#xA;;&#xA;&#xA;[modules]&#xA;autoload=yes&#xA;;&#xA;; Any modules that need to be loaded before the Asterisk core has been&#xA;; initialized (just after the logger initialization) can be loaded&#xA;; using &amp;#39;preload&amp;#39;.  &amp;#39;preload&amp;#39; forces a module and the modules it&#xA;; is known to depend upon to be loaded earlier than they normally get&#xA;; loaded.&#xA;;&#xA;; NOTE: There is no good reason left to use &amp;#39;preload&amp;#39; anymore.  It was&#xA;; historically required to preload realtime driver modules so you could&#xA;; map Asterisk core configuration files to Realtime storage.&#xA;; This is no longer needed.&#xA;;&#xA;;preload = your_special_module.so&#xA;;&#xA;; If you want Asterisk to fail if a module does not load, then use&#xA;; the &amp;#34;require&amp;#34; keyword. Asterisk will exit with a status code of 2&#xA;; if a required module does not load.&#xA;;&#xA;;require = chan_pjsip.so&#xA;;&#xA;; If you want you can combine with preload&#xA;; preload-require = your_special_module.so&#xA;;&#xA;;load = res_musiconhold.so&#xA;;&#xA;; Load one of: alsa, or console (portaudio).&#xA;; By default, load chan_console only (automatically).&#xA;;&#xA;noload = chan_alsa.so&#xA;;noload = chan_console.so&#xA;;&#xA;; Do not load res_hep and kin unless you are using HEP monitoring&#xA;; http://sipcapture.org in your network.&#xA;;&#xA;noload = res_hep.so&#xA;noload = res_hep_pjsip.so&#xA;noload = res_hep_rtcp.so&#xA;;&#xA;; Do not load chan_sip by default, it may conflict with res_pjsip.&#xA;noload = chan_sip.so&#xA;;&#xA;; Load one of the voicemail modules as they are mutually exclusive.&#xA;; By default, load app_voicemail only (automatically).&#xA;;&#xA;;noload = app_voicemail.so&#xA;noload = app_voicemail_imap.so&#xA;noload = app_voicemail_odbc.so&#xA;&#xA;; &#xA;noload = res_config_ldap.so&#xA;noload = app_jack.so&#xA;noload = res_config_pgsql.so&#xA;noload = res_phoneprov.so&#xA;noload = res_smdi.so&#xA;noload = res_pjsip_phoneprov_provider.so&#xA;noload = cdr_csv.so&#xA;noload = cdr_sqlite3_custom.so&#xA;noload = cdr_manager.so&#xA;noload = cdr_pgsql.so&#xA;noload = cdr_tds.so&#xA;noload = cdr_odbc.so&#xA;noload = cel_sqlite3_custom.so&#xA;noload = cel_tds.so&#xA;noload = app_alarmreceiver.so&#xA;noload = cel_pgsql.so&#xA;noload = res_pjsip_transport_websocket.so&#xA;noload = res_config_sqlite3.so&#xA;noload = res_config_pgsql.so&#xA;noload = chan_oss.so&#xA;noload = chan_alsa.so&#xA;noload = app_minivm.so&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
  </channel>
</rss>
