Difference between revisions of "Redhat8 - Install Nginx, Apache, Redis, php7.4-fpm, MySQL, PostgreSQL"

From Rhomicom Wiki
Jump to navigation Jump to search
Line 33: Line 33:
  
 
sudo mysql -p #(Use \q to quit)
 
sudo mysql -p #(Use \q to quit)
 +
 +
CREATE DATABASE rho_database;
 +
 +
GRANT ALL ON rho_database.* TO 'root'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
 +
 +
FLUSH PRIVILEGES;
 +
 +
== PHP ==
 +
sudo dnf install php php-fpm php-mysqlnd

Revision as of 20:27, 29 January 2021

nginx

sudo dnf install nginx sudo systemctl start nginx

curl -4 ec2-3-123-2-191.eu-central-1.compute.amazonaws.com

firewalld

sudo yum install firewalld sudo systemctl start firewalld

sudo systemctl enable firewalld

sudo systemctl status firewalld

sudo firewall-cmd --permanent --add-service=http

sudo firewall-cmd --permanent --add-service=https

sudo firewall-cmd --permanent --list-all

sudo firewall-cmd --reload

nano /etc/firewalld/firewalld.conf

# AllowZoneDrifting=no

MariaDB

sudo dnf install mariadb-server

sudo systemctl start mariadb

sudo systemctl enable mariadb

sudo mysql_secure_installation #(Set Root Password and disable test and insecure features)

sudo mysql -p #(Use \q to quit)

CREATE DATABASE rho_database;

GRANT ALL ON rho_database.* TO 'root'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;

FLUSH PRIVILEGES;

PHP

sudo dnf install php php-fpm php-mysqlnd