如何使用 Linux Web 服务器配置 Kannel?
我从网上下载了Kannel软件并将该软件上传到网络服务器中。
现在我需要编译并运行 Kannel。如何运行 configure
和 install.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这就是我安装它的方式:
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
如何开始&停止承载箱和smsbox
如何停止kannel服务
如何检查kannel日志
如何检查kannel进程是否正在运行?
在此处阅读有关如何配置和使用 kannel 的更多信息
http://www.techgyaan.org/ 2011/09/如何安装-kannel-open-souce-sms/
Howto start & stop the bearerbox & smsbox
Howto Stop the kannel service
Howto check logs for kannel
Howto check the kannel process is running or not?
Read more about how to configure and use kannel here
http://www.techgyaan.org/2011/09/how-to-install-kannel-open-souce-sms/
这里有一些提示:
http://julmis.julmajanne.com/index.php/Kannel
here are some tips:
http://julmis.julmajanne.com/index.php/Kannel
首先决定安装位置:
然后运行 make 创建二进制文件
然后 make install 将正确的二进制文件放在正确的位置
最后转到 /usr/local/kannel 并启动 bearerbox 和 smsbox
smskannel.conf
示例配置随源代码一起分发,您可以将其复制到您的安装目录。First decide where to install it:
Then run make to create binaries
Then make install to put the correct binaries in their right places
Finally go to /usr/local/kannel and start the bearerbox and smsbox
smskannel.conf
is and example configuration distributed with the source code and you can copy it to your installation directory.解压缩
$curl -O https://redmine. kannel.org/attachments/download/198/gateway-1.5.0.tar.gz
$ tar -zxvf gateway-1.5.0.tar.gz
$ cd gateway-1.5.0
为 —prefix 标志(例如 /home/vtypal/kannel)选择目标安装目录(与当前目录不同)
照常构建和安装
$ ./configure --prefix=/home/vtypal/kannel
$ 制作
$ make install
在 kannel 的 sbin 目录下创建一个名为 kannel.conf 的配置文件。 。
启动频道
$ cd /home/vtypal/kannel/sbin
$ nohup ./bearerbox &
$ nohup ./smsbox &
如果 kannel.conf 中有任何配置错误,请检查日志
Uncompress
$ curl -O https://redmine.kannel.org/attachments/download/198/gateway-1.5.0.tar.gz
$ tar -zxvf gateway-1.5.0.tar.gz
$ cd gateway-1.5.0
Select a target install directory (different from your current directory) for the —prefix flag (for ex. /home/vtypal/kannel)
Build and install as usual
$ ./configure --prefix=/home/vtypal/kannel
$ make
$ make install
Under the sbin directory of kannel create a configuration file called kannel.conf with your kannel configuration.
Start kannel
$ cd /home/vtypal/kannel/sbin
$ nohup ./bearerbox &
$ nohup ./smsbox &
Check the logs if you have any config error in your kannel.conf