configuration

SSL installation in AWS Default IAM

A new scenario for installation of Let’sencrypt SSL into AWS IAM with the nignx server. Let start with SSL installation on Linux IAM in AWS HOw to install Letsencrypt SSL in AWS EC2 AWS IAM with Nginx Dowanload certbot-auto curl -O https://dl.eff.org/certbot-auto Give appropriate permission chmod +x certbot-auto Move it into /usr/local/bin sudo mv certbot-auto /usr/local/bin/certbot-auto OR […]

SSL installation in AWS Default IAM Read More »

Letsencrypt SSL certificate installation on centos and ubuntu with nginx and apache 1

Letsencrypt SSL certificate installation on centos and ubuntu with nginx and apache

Hello Everyone SSL is very important for any website to have a secure connection and I will tell you to How easily you can perform free ssl installation to your website. 1. SSL installation on Centos 6.* server with apache 2. SSL installation on Centos 6.* server with nginx 3. SSL installation on Centos 7

Letsencrypt SSL certificate installation on centos and ubuntu with nginx and apache Read More »

How to install and configure php7 , nginx on centos 7 2

How to install and configure php7 , nginx on centos 7

How to install nginx in centos 7 Update your server yum update Add epel repo as nginx is not available in Default repo yum install epel-release Install nginx yum install nginx Start the nginx services systemctl start nginx Enable the nginx so that when ever server restart , it should automatically start systemctl enable nginx

How to install and configure php7 , nginx on centos 7 Read More »

create user in MySQL using terminal

How to create user in MySQL using terminal?

How to create user in MySQL using terminal? Note :- need to edit commands where “techouse” is mentioned. How to change the password of existing user in mysql ALTER USER ‘techouse’@’localhost’ IDENTIFIED BY ‘MyNewPass’; —————- How to create backup while ignoring the single or multiple tables mysqldump -u techouse -p database –ignore-table=database.table1 > database.sql —————

How to create user in MySQL using terminal? Read More »

How to Importing code from an existing project GitLab, GitHub, and bitbucket?

Importing code from an existing project Adding the existing project in gitlab , github and bitbucket Open terminal Go to the local project directory cd /home/username/test Initialize the local directory git init Add all your files to the new local project directory git add . After adding all files, You have to commit that staged

How to Importing code from an existing project GitLab, GitHub, and bitbucket? Read More »