Category: Linux
-
MySQL – Install(5.7) and Upgrade to (8.0.31) in Ubuntu 18.*

Installing MySQL in Ubuntu OS is very easy, you just need to follow 3 steps. Update, Install MySQL CE Server and Configure.
-
How-to-Install-Python-with-Anaconda & Connect with Oracle

You can also download Python Installer Executable from https://www.python.org/downloads/windows/ With the Help of CX_ORACLE, we can connect and Execute Oracle Commands . You can use getpass to hide prompted password at command prompt. We can use the plot by Installing matplotlib Hope you like it !!!
-
Hacking – FATDBA.COM ¯\_(ツ)_/¯
ॐ
#Python #WebScraping Just Kidding !!! Its not Hacking, this is known as WEB-SCRAPING using the Powerful Python. What is web scraping? Web scraping is the process of using bots to extract content and data from a website. Unlike screen scraping, which only copies pixels displayed onscreen, web scraping extracts underlying HTML code and, with it, data…
-
Install MySQL 5.7 Community Server Using RPM Bundle- CENTOS 7
To Install MySQL 5.7 we have To options. You can Download the RPM Or bundle Tar file from https://dev.mysql.com/downloads/repo/yum/ https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.9-1.el7.x86_64.rpm-bundle.tar – For 5.7 https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.30-1.el7.x86_64.rpm-bundle.tar for 8.0 Few Useful links to Download your desired Version. https://dev.mysql.com/downloads/repo/yum/ https://downloads.mysql.com/archives/community/ Install the Downloaded Packages/RPM Using Local-Install Option. Get the Temporary root password from /var/log/mysqld.log. You can either change the…
-
Upgrade MySQL Server from 5.7 to 8 CentOS 7 Linux
Quote from Mysql Website Upgrade Paths Reference: https://dev.mysql.com/doc/refman/8.0/en/upgrade-paths.html Download the Required RPM and place them in the Server. Take the Backup of all the Databases and stop the MySQL Service. Run the Following from Local Directory using yum localinstall mysql-community-{server,client,common,libs}-* This completes the Upgrade from 5.7 to 8.0(Or Latest) Start the Service again and verify.…
-
Docker Part 1 – Install Docker CE and Docker Compose in Oracle Linux Server 8.6 – OCI-IAAS
In this Post, lets see how to Install Docker CE . I am using Oracle Linux Server 8.6 (Free Instance Offered by Oracle Cloud) . Docker lets you build, test, and deploy applications quickly, Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units…
-
Install & Configure SSL for Apache-Nginx using Lets Encrypt-CertBot.
One can Install Apache and Nginx using YUM Or DNF in the Selected Unix flavor whereas by default it is a non-secure sub-domain when you access. Lets encrypt offers free SSL which can be configured to get the SSL for your domain irrespective of Private Or Public Domains. In case of Private Domains , you…
-
Install MySQL 8 Community Server (mysql-community-server) on Azure VM(IAAS) Linux 8 CentOS
Download and Add MySQL Yum Repository. wget https://repo.mysql.com//mysql80-community-release-el8-1.noarch.rpm Install the downloaded release package. yum localinstall mysql80-community-release-el8-1.noarch.rpm You can check that the MySQL Yum repository has been successfully added by the following command (If Yum Is not available, you can use dnf , instead.) yum repolist enabled | grep “mysql.-community.” Installing MySQL Linux 8 includes a…
-
How to Add Swap Memory using a file
Swap space in Linux is used when the amount of physical memory (RAM) is full. If the system needs more memory resources and the RAM is full, inactive pages in memory are moved to the swap space. Swap space can be a dedicated swap partition (recommended), a swap file, or a combination of swap partitions…
