如何使用 Linux Web 服务器配置 Kannel?

发布于 2024-08-21 13:32:55 字数 140 浏览 3 评论 0原文

我从网上下载了Kannel软件并将该软件上传到网络服务器中。

现在我需要编译并运行 Kannel。如何运行 configureinstall.sh 文件?

你能提供解决方案吗?

I downloaded the Kannel software from the net and uploaded the software into the web server.

Now I need to compile and run Kannel. How can I run configure and install.sh files?

Can you provide the solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

巴黎盛开的樱花 2024-08-28 13:32:56

这就是我安装它的方式:

latest svn:

svn co <​​a href="https://svn.kannel.org/gateway/trunk" rel="nofollow noreferrer">https://svn.kannel.org/gateway /trunk

./configure --with-mysql --with-malloc=native

–>您将收到一条消息,感谢您使用 Kannel。

触摸.依赖
使依赖
make

sudo make bindir=/kannel/bin/ install #---->输入您的根密码。

并祝贺

This is how I would install it:

latest svn:

svn co https://svn.kannel.org/gateway/trunk

./configure --with-mysql --with-malloc=native

–> you will get a message saying thank you for using Kannel.

touch .depend
make depend
make

sudo make bindir=/kannel/bin/ install #—-> Enter your root password.

and congratz

流云如水 2024-08-28 13:32:56

如何开始&停止承载箱和smsbox

#/usr/sbin/smsbox /etc/kannel.conf &
#/usr/sbin/bearerbox /etc/kannel.conf &

如何停止kannel服务

#/etc/init.d/kannel stop

如何检查kannel日志

 #tail -20f /sdp/wap_push_promotion/bearerbox.log

如何检查kannel进程是否正在运行?

#  ps -ef | grep kannel
root     11314 11281  0 14:05 pts/2    00:00:00 grep kannel
kannel   20609    1  0 Aug02 ?        00:00:00 /usr/sbin/bearerbox /etc/kannel.conf
kannel   20628    1  0 Aug02 ?        00:00:00 /usr/sbin/smsbox/etc/kannel.conf

在此处阅读有关如何配置和使用 kannel 的更多信息
http://www.techgyaan.org/ 2011/09/如何安装-kannel-open-souce-sms/

Howto start & stop the bearerbox & smsbox

#/usr/sbin/smsbox /etc/kannel.conf &
#/usr/sbin/bearerbox /etc/kannel.conf &

Howto Stop the kannel service

#/etc/init.d/kannel stop

Howto check logs for kannel

 #tail -20f /sdp/wap_push_promotion/bearerbox.log

Howto check the kannel process is running or not?

#  ps -ef | grep kannel
root     11314 11281  0 14:05 pts/2    00:00:00 grep kannel
kannel   20609    1  0 Aug02 ?        00:00:00 /usr/sbin/bearerbox /etc/kannel.conf
kannel   20628    1  0 Aug02 ?        00:00:00 /usr/sbin/smsbox/etc/kannel.conf

Read more about how to configure and use kannel here
http://www.techgyaan.org/2011/09/how-to-install-kannel-open-souce-sms/

梦醒灬来后我 2024-08-28 13:32:56

首先决定安装位置:

./conifgure --prefix=/usr/local/kannel

然后运行 ​​make 创建二进制文件

make

然后 make install 将正确的二进制文件放在正确的位置

make install

最后转到 /usr/local/kannel 并启动 bearerbox 和 smsbox

./sbin/bearerbox smskannel.conf &
./sbin/smsbox smskannel.conf &

smskannel.conf示例配置随源代码一起分发,您可以将其复制到您的安装目录。

First decide where to install it:

./conifgure --prefix=/usr/local/kannel

Then run make to create binaries

make

Then make install to put the correct binaries in their right places

make install

Finally go to /usr/local/kannel and start the bearerbox and smsbox

./sbin/bearerbox smskannel.conf &
./sbin/smsbox smskannel.conf &

smskannel.conf is and example configuration distributed with the source code and you can copy it to your installation directory.

魄砕の薆 2024-08-28 13:32:56
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文