Skip to content

Instantly share code, notes, and snippets.

@LinuxPlaner
Created September 7, 2021 16:35
Show Gist options
  • Save LinuxPlaner/3b9bb492bbc743342b75c1a4d8c5a9e5 to your computer and use it in GitHub Desktop.
Save LinuxPlaner/3b9bb492bbc743342b75c1a4d8c5a9e5 to your computer and use it in GitHub Desktop.
Hashtopolis Install Ubuntu Linux
Ping Me For hashtopolis.sh 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]
sudo apt update
sudo apt upgrade
sudo service apache2 restart
sudo service apache2 status
nano /usr/lib/systemd/system/mariadb.service
# Find Below Line And Update
ctrl+s and ctrl+x
systemctl daemon-reload
exit
systemctl restart mysql
apt update -y
apt upgrade -y
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/apache2
sudo apt install php7.2-fpm php7.2-common php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-gd php7.2-xml php7.2-intl php7.2-mysql php7.2-cli php7.2-zip
# Install PHPmyAdmin
sudo apt update
sudo apt install phpmyadmin
sudo nano /etc/apache2/apache2.conf
# Then add the following line to the end of the file:
Include /etc/phpmyadmin/apache.conf
# save ctrl+x then y and hit enter. Then restart apache:
sudo service apache2 restart
# visit: http://localhost/phpmyadmin/
git clone https://github.com/s3inlc/hashtopolis.git
sudo cp -r hashtopolis /var/www/hashtopolis
sudo chown -R www-data:www-data /var/www/hashtopolis
sudo service apache2 restart
cd /etc/apache2/sites-available
sudo nano 000-default.conf
<VirtualHost *:80>
ServerName localhost
ServerAdmin webmaster@localhost
DocumentRoot /var/www/hashtopolis/src
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<Directory /var/www/hashtopolis/src>
AllowOverride All
</Directory>
#Save and exit
sudo service apache2 reload
sudo service apache2 restart
visit: http://localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment