Skip to main content

Posts

Showing posts from September, 2020

How to install Kannel Open Souce SMS Gateway on Cent OS

Kannel is a compact and very powerful open source WAP and SMS gateway , used widely across the globe both for serving trillions of short messages (SMS), WAP Push service indications and mobile internet connectivity. Documentation Kannel User Guide For more troubleshoot go through Kannel User Guide   Download Kannel RPM or Source Code Kannel Source Code Download Kannel Source Code Download Kannel Source Code md5: 54a71e14a681641f1b670bf9925decfa gateway-1.4.3.zip sha1: 515a9aa1df52e3d14c753b95faba580a02c0787c gateway-1.4.3.zip Kannel RPM's Download from RPM Repo Search your Linux version from Here How to install Kannel on Centos 5.4 # rpm -ivh kannel-1.4.2-1.el5.rf.i386.rpm # rpm -ivh kannel-devel-1.4.2-1.el5.rf.i386.rpm $ads=[1] Edit the default Kannel configuration # vim /etc/kannel.conf # Default kannel configuration file without Database group = core admin-port = 13000 admin-password = abc status-password = def admin-deny-ip = ...

How to Install Oracle Client for Ubuntu

Login to user laptop with “ Administrator ” username Switch user as  root and follow the steps given below to install Oracle client in Ubuntu # apt-get install gcc make binutils lesstif2 libc6 libc6-dev rpm libmotif3 libaio1 libstdc++5 gawk alien ksh gcc-3.3 g++-3.3 libstdc++5 # addgroup oinstall # addgroup dba # addgroup nobody # useradd -g oinstall -G dba -p password -d /home/oracle -s /bin/bash oracle # usermod -g nobody nobody # mkdir /home/oracle # chown -R oracle:dba /home/oracle # ln -s /usr/bin/awk /bin/awk # ln -s /usr/bin/rpm /bin/rpm # ln -s /usr/bin/basename /bin/basename We need to mimic the /etc/rc.d directory structure of a Red Hat box. We do this with more symlinks: # mkdir /etc/rc.d # ln -s /etc/rc0.d /etc/rc.d/rc0.d # ln -s /etc/rc2.d /etc/rc.d/rc2.d # ln -s /etc/rc3.d /etc/rc.d/rc3.d # ln -s /etc/rc4.d /etc/rc.d/rc4.d # ln -s /etc/rc5.d /etc/rc.d/rc5.d # l...