1. Install Apache2
Let’s begin by updating the local package index to reflect the latest upstream changes:
sudo apt update
Then, install the apache2 package:
sudo apt install apache2
Check with the systemd init system to make sure the service is running by typing:
sudo systemctl status apache2
When you have your server’s IP address, enter it into your browser’s address bar:
http://your_server_ip/
* Errors can happen:
- Server not open port (manual with ufw)
- Server not open port (on control pannel)
2. Setup Virtual Hosts for project
Create the Directory Structure
sudo mkdir -p /var/www/example.com/public
Grant Permissions
Now we have the directory structure for our files, but they are owned by our root user. If we want our regular user to be able to modify files in our web directories, we can change the ownership by doing this:
sudo chown -R $USER:$USER /var/www/example.com/public
We should also modify our permissions to ensure that read access is permitted to the general web directory and all of the files and folders it contains so that pages can be served correctly:
sudo chmod -R 755 /var/www
Create file index.html
nano /var/www/example.com/public/index.html
<html>
<head>
<title>Welcome to example.com!</title>
</head>
<body>
<h1>Success! The example.com virtual host is working!</h1>
</body>
</html>
Create New Virtual Host Files
Start by copying the file for the first domain:
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/example.com.conf
Open the new file in your editor with root privileges:
sudo nano /etc/apache2/sites-available/example.com.conf
When complete, our virtual host file should look like this:
/etc/apache2/sites-available/example.com.conf
<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Enable the New Virtual Host Files
sudo a2ensite example.com.conf
Next, disable the default site defined in 000-default.conf:
sudo a2dissite 000-default.conf
sudo a2ensite ec-cube-dev.cdb-lab1.com.conf
enter ip into your browser’s address bar:
http://your_server_ip/
3. Install php 8.1
Run the following commands to update your list of available packages, then then install PHP 8.1:
sudo apt update
sudo apt install --no-install-recommends php8.1
Check your PHP version information with the following command:
php -v
Install package needed for php 8.1
sudo apt install php8.1-{ctype,pdo,tokenizer,cli,gd,curl,mysql,ldap,zip,fileinfo,fpm,xml,mbstring,exif,pspell,imagick,bcmath}
install the Apache module for PHP 8.1 for apache2 using php8.1
sudo apt install libapache2-mod-php8.1
Install sqlsrv driver for php 8.1 to connect mssql
sudo apt install php8.1-dev
sudo update-alternatives --set php /usr/bin/php8.1
sudo update-alternatives --set php-config /usr/bin/php-config8.1
sudo update-alternatives --set phpize /usr/bin/phpize8.1
sudo pecl install -f sqlsrv
sudo pecl install -f pdo_sqlsrv
sudo phpenmod -v 8.1 sqlsrv pdo_sqlsrv
sudo service apache2 restart
4. Install Mysql Server 5.6
Server: <IP server>
User: root
Password: <password>
Download version 5.6.46 from MySQL site
wget https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz
Add mysql user group
sudo groupadd mysql
Add mysql (not the current user) to mysql user group
sudo useradd -g mysql mysql
Extract it
sudo tar -xvf mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz
Move it to /usr/local
sudo mv mysql-5.6.46-linux-glibc2.12-x86_64 /usr/local/
Create mysql folder in /usr/local by moving the untarred folder
cd /usr/local
sudo mv mysql-5.6.46-linux-glibc2.12-x86_64 mysql
set MySql directory owner and user group
cd mysql
sudo chown -R mysql:mysql *
Install the required lib package
sudo apt-get install libaio1 libncurses5
Execute mysql installation script
sudo scripts/mysql_install_db --user=mysql
Set mysql directory owner from outside the mysql directory
sudo chown -R root .
Set data directory owner from inside mysql directory
sudo chown -R mysql data
Copy the mysql configuration file
sudo cp support-files/my-default.cnf /etc/my.cnf
Start mysql
sudo bin/mysqld_safe --user=mysql & sudo cp support-files/mysql.server /etc/init.d/mysql.server
Set root user password
sudo bin/mysqladmin -u root password '[your new password]'
Add mysql path to the system
sudo ln -s /usr/local/mysql/bin/mysql /usr/local/bin/mysql
Start mysql server
sudo /etc/init.d/mysql.server start
Stop mysql server
sudo /etc/init.d/mysql.server stop
Check status of mysql
sudo /etc/init.d/mysql.server status
Now login using below command, start mysql server if it's not running already
mysql -u root -p
Create new User, DB for Mysql
// handle with root user
mysql -u root -p
mysql root {$password}
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY {$password};
// add new user, db
CREATE USER '{$user_name}'@'localhost' IDENTIFIED BY {$password};
ALTER USER '{$user_name}'@'localhost' IDENTIFIED BY {$new_password};
CREATE DATABASE IF NOT EXISTS '{$db_name}';
GRANT ALL ON {$db_name}.* TO '{$user_name}'@'localhost';
FLUSH PRIVILEGES
Thank you
No comments:
Post a Comment