Posts

Showing posts from April, 2020

MariaDB Installation Process and Configuration in RHEL-7

rpm -qa | grep mariadb yum groupinstall mariadb -y firewall-cmd --permanent  --add-services=mysql firewall-cmd --reload systemctl start mariadb systemctl enable mariadb systemctl status mariadb mysql_secure_installation Login: ===== mysql -u user_name -p user_password Show Database: ============== show databases; Create Database: ================== create database database_name; select specific database: ========================= use database_name; Create Table: ============= create table table_name ( id varchar(10), name varchar(100), contact varchar(11)); Insert into database: ===================== insert into table_name values ( '01', 'Mushfiq', '01982672499'); Select from table: ================== select * from table_name; Create Use: =========== create user user_name@localhost identified by "User_password"; Give specific permission: ========================= grant select, insert on databa

(2) Dreampie installation for python

Image
Video on DreamPie  Installation in Windows-10 for Pyhton Coming soon insha-Allah, Screen shot are given below.

(1) Python Installation in Windows OS

Image
Video on Python Installation in Windows-10 Video link :  Python

Active Directory Installation in Windows Server-2019

Image
Theory of Active Directory Services: ** What is Active Directory Domain Services? Active Directory Domain Services(ADDS) stores information about users,computers, and other devices on the network.Your users  will be able to login at their system with the help of this domain controller. ADDS helps administrators securely manage this information and facilities resource sharing & collaboration between users. What is Active Directory Domain Services? ** Note: Any time Primary Domain Controller can be down for various reasons, so to help ensure that users can still  log on to the network in the case of server outage, you should install minimum of two Domain Controllers for a domain. Installation video of Active Directory: