Last active
February 8, 2022 16:42
-
-
Save cloudybdone/30d56f833f6ccd86b4580c3cf2fd6407 to your computer and use it in GitHub Desktop.
Hashtopolis Installation Service Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you need any help related to Hashtopolis installation service on Ubuntu contact with me: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHxboQrc | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube PlayList: https://www.youtube.com/watch?v=uZugx9C3Ld0&list=PLiveDaEySXe-ALuTMEq4_0z-gjXHRy8tu | |
| sudo apt update | |
| sudo apt upgrade | |
| sudo apt install apache2 | |
| apache2 -v | |
| sudo service apache2 status | |
| sudo -i | |
| apt install mariadb-server... | |
| mysql_secure_installation | |
| nano /usr/lib/systemd/..... | |
| LimitNOFILE=inf... | |
| systemctl daemon-reload | |
| systemctl status mariadb | |
| systemctl is-enabled mariadb | |
| mysql | |
| create database hashtopolis; | |
| use hashtopolis; | |
| exit | |
| systemctl restart... | |
| apt update -y | |
| apt upgrade -y | |
| sudo apt-get install software.... | |
| sudo add-apt-repository.... | |
| sudo apt install php7.2-fpm php7.2-common php7.2.... | |
| sudo apt install libapache2-mod-php php-mysql... | |
| php --version | |
| sudo update-alternatives --config php | |
| sudo update-alternatives...... | |
| sudo apt purge libapache2..... | |
| sudo apt install libapache2-mod...... | |
| sudo a2enmod phpNEW VERSION | |
| sudo apt install.... | |
| sudo nano /etc/php/7.2.... | |
| file_uploads = On | |
| allow_url_fopen = | |
| short_open_tag = | |
| memory_limit = | |
| max_execution_time = 360 | |
| date.timezone = America/Chicago | |
| # Install PHPmyAdmin | |
| sudo apt update | |
| sudo apt install -y php-mbstring | |
| sudo nano /etc/apache2..... | |
| Include /etc/phpmyadmin.... | |
| sudo service apache2..... | |
| # visit: http://localhost/phpmyadmin/ | |
| git clone https://github.com..... | |
| sudo cp -r hashtopolis /var.... | |
| sudo chown -R www-data:www...... | |
| sudo nano /etc/apache2/.... | |
| MaxKeepAliveRequests | |
| AllowOverride,..... | |
| sudo service apache2.... | |
| cd /etc/apache2/..... | |
| sudo nano 000-default.conf | |
| <VirtualHost *:80> | |
| ServerName localhost | |
| ServerAdmin webmaster@localhost | |
| ErrorLog ${APACHE_LOG_DIR}/error.log | |
| </VirtualHost> | |
| sudo service apache2 reload | |
| visit: http://localhost |
cloudybdone
commented
Jan 16, 2022
Author

Author
Author
Author
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



