Month: October 2022
-
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.
-
Web-Scraping 🐍 – Part 2 – Download scripts from code.activestate.com with Python -Pagination

In my Previous post, we tried to get the blog entries as a file into a directory using web-scraping., Now lets read a web Page Entries and save the links(and content 🙂 ) as files. One can extract the Content from a web Page by reading/validating the tags as needed. In this post we are…
-
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 !!!
-
Fun with Python – Create Web Traffic using selenium & Python.

In my Previous Post, I tried to Download the Content from the Blogs and store it in the File System, This Increased my Google Search Engine Stats and Blog traffic as well. As you can See Max views are from Canada & India. With this, I thought of writing a Python Program to create traffic…
-
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.…
