opnsips start给出“ ERROR:core:main_loop:无法派生模块进程”并退出

时间:2019-02-08 07:29:08

标签: ubuntu opensips

在ubuntu中的aws t2 micro中启动opensips(t2.micro可变ECU,1个vCPU,2.5 GHz,Intel Xeon家族,1 GiB内存,仅EBS)会显示“ ERROR:core:main_loop:failed分叉模块进程 ”并退出。

运行它的命令  opensips -d -f /etc/opensips/opensips.cfg -E

我检查了磁盘空间,剩下的空间足以安装opensips

const APIs = [
    {
        route: 'order',
        methods: ['get', 'post']
    },
    {
        route: 'item',
        methods: ['get']
    },
]
APIs.forEach(api => {
    api.methods.forEach(method => {
        app[method]('/' + api.route, (req, res) => require('./routes/' + api.route)[method](req, res))
    })
})

opensips也会在启动时跟踪

Filesystem      Size  Used Avail Use% Mounted on
udev            492M   12K  492M   1% /dev
tmpfs           100M  356K   99M   1% /run
/dev/xvda1      7.8G  2.9G  4.5G  39% /
none            4.0K     0  4.0K   0% /sys/fs/cgroup
none            5.0M     0  5.0M   0% /run/lock
none            497M     0  497M   0% /run/shm
none            100M     0  100M   0% /run/user

到目前为止找不到

0 个答案:

没有答案