Skip to content

Instantly share code, notes, and snippets.

@LinuxPlaner
Created March 17, 2022 18:10
Show Gist options
  • Save LinuxPlaner/aeaf47543e7592f6f97d164e041ba51d to your computer and use it in GitHub Desktop.
Save LinuxPlaner/aeaf47543e7592f6f97d164e041ba51d to your computer and use it in GitHub Desktop.
Zammad Install Ubuntu Linux
Ping Me For django installing related service:
SMS: +8801610932753
IMO: +8801610932753
BiP: +8801610932753
Viber: +8801610932753
Signal: +8801610932753
Discord: supanta saha#3868
Telegram: https://t.me/LinuxPlaner
WhatsApp: https://wa.link/njuw4c
Skype: https://join.skype.com/weW8UDI0u7o5
Email: [email protected]
apt update -y && apt-get upgrade -y
apt update -y
add-apt-repository ppa:git-core/ppa
apt update -y && apt upgrade -y
apt install git
git config --global user.name "name"
git config --global user.email [email protected]
ssh-keygen -t rsa -b 4096 -C "[email protected]"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
# Add SSH Key the GitHub
cat /root/.ssh/id_rsa.pub
apt upgrade -y && apt update
apt-get install openssh-server
nano /etc/ssh/sshd_config
# Find (ctrl+w) this line and set
PermitRootLogin yes
PubkeyAuthentication yes
PasswordAuthentication yes
# Save & exit ctrl+s and ctrl+x then hit enter
service ssh restart
reboot
# Docker Install
apt-get update -y
apt-get upgrade -y
apt-get update -y
apt install docker
systemctl start docker
systemctl enable docker
# Docker Compose Install
apt-get update -y
apt-get upgrade -y
docker-compose --version
git clone https://github.com/zammad/zammad-docker.git
git init
git add .
# visit localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment