Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created February 16, 2020 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/878b3025dccd4e16aa305d3d52112c75 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/878b3025dccd4e16aa305d3d52112c75 to your computer and use it in GitHub Desktop.
SMPP Setup for SMS Gatteway
# SMPP Server For Jasmin SMS Gateway need setup Contact Skype: linuxbiekaisar
# You Tube : https://www.youtube.com/watch?v=EA_EbNGWRsY&t=4s
sudo apt update && sudo apt-get upgrade --fix-missing
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
wget -qO - http://bit.ly/jasmin-deb-repo | sudo bash
sudo apt-get install python-jasmin
sudo systemctl enable jasmind
sudo systemctl start jasmind
cd /var/www/
sudo git clone https://github.com/amechax/JasminWebPanel.git
sudo rm -rf html
sudo mv JasminWebPanel html
cd html
sudo apt install python-pip
sudo pip install -r requirements.pip
sudo ./manage.py migrate
sudo ./manage.py createsuperuser
sudo ./manage.py collectstatic
sudo python manage.py runserver [::]:8000
# Visit http://localhost:8000/
#SMPP #SMPPServer #SMPPPanel #SMS Gateway
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment