• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux ubuntu 18.04 installing server.

Syiko

Scripter/Developer
Joined
Aug 28, 2017
Messages
472
Solutions
3
Reaction score
108
what is the best way to install my website in ubunut should i use nigax better? or what should i do i installed the phpmyadmin but i can't access it ++ error : failed to run http apache i got my tfs own sources what commands should i use to install website and phpmyadmin and to set phpmyadmin password
 
what is the best way to install my website in ubunut should i use nigax better? or what should i do i installed the phpmyadmin but i can't access it ++ error : failed to run http apache i got my tfs own sources what commands should i use to install website and phpmyadmin and to set phpmyadmin password

Ubuntu / Debian, NGINX, MariaDB, PHP7.3-FPM and voilà.
 
This is from an old tutorial by Damon or w/e his name is that I use.

#Install LAMP Linux Apache MySQL PHP
sudo apt-get -y install apache2
sudo systemctl enable apache2
sudo systemctl start apache2
sudo systemctl status apache2
sudo apt-get -y install mysql-server mysql-client
sudo systemctl status mysql
sudo apt-get -y update
sudo apt-get install php7.0-mysql php7.0-curl php7.0-json php7.0-cgi php7.0 libapache2-mod-php7.0
php -v
sudo apt-get -y install phpmyadmin
set administrative pw
sudo nano /etc/apache2/apache2.conf
add at the end: Include /etc/phpmyadmin/apache.conf
sudo apt-get -y install php-mbstring php7.0-mbstring php-gettext
sudo systemctl restart apache2
 
This is from an old tutorial by Damon or w/e his name is that I use.

#Install LAMP Linux Apache MySQL PHP
sudo apt-get -y install apache2
sudo systemctl enable apache2
sudo systemctl start apache2
sudo systemctl status apache2
sudo apt-get -y install mysql-server mysql-client
sudo systemctl status mysql
sudo apt-get -y update
sudo apt-get install php7.0-mysql php7.0-curl php7.0-json php7.0-cgi php7.0 libapache2-mod-php7.0
php -v
sudo apt-get -y install phpmyadmin
set administrative pw
sudo nano /etc/apache2/apache2.conf
add at the end: Include /etc/phpmyadmin/apache.conf
sudo apt-get -y install php-mbstring php7.0-mbstring php-gettext
sudo systemctl restart apache2
don't worrk.
 
Which step you stuck at? and what errors you get? You are using ubuntu?
 
Back
Top