• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install MyWebSQL on Ubuntu

1416

How to install MyWebSQL on Ubuntu

MyWebSQL is free and open source MySQL Database Administration tool similar to PhpMyAdmin where the user can manage the MySQL database in a graphical way through web browser. This tutorial covers the installation procedure of MyWebSQL on Ubuntu.

Installation procedure

The MyWebSQL requires the LAMP environment so setup the LAMP server and follow the below instructions to install MyWebSQL. Now go to http://mywebsql.net/ to download the MyWebSQL package or else use the below command to download via command line.

root@linuxhelp:~# wget https://excellmedia.dl.sourceforge.net/project/mywebsql/stable/mywebsql-3.7.zip
--2017-04-19 14:28:20--  https://excellmedia.dl.sourceforge.net/project/mywebsql/stable/mywebsql-3.7.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1683612 (1.6M) [application/octet-stream]
Saving to: ‘ mywebsql-3.7.zip’ 
mywebsql-3.7.zip                            100%[=========================================================================================> ]   1.61M   152KB/s    in 9.2s   
2017-04-19 14:28:30 (179 KB/s) - ‘ mywebsql-3.7.zip’  saved [1683612/1683612]

Once it is downloaded, extract the package into document root of apache web server by executing the following command.

root@linuxhelp:~# unzip mywebsql-3.7.zip -d /var/www/html/
Archive:  mywebsql-3.7.zip
   creating: /var/www/html/mywebsql/backups/
  inflating: /var/www/html/mywebsql/backups/.htaccess 
  inflating: /var/www/html/mywebsql/backups/readme.txt 
  inflating: /var/www/html/mywebsql/cache.php 
   creating: /var/www/html/mywebsql/config/
  inflating: /var/www/html/mywebsql/config/.htaccess 
  inflating: /var/www/html/mywebsql/config/auth.php  
  inflating: /var/www/html/mywebsql/config/backups.php 
  inflating: /var/www/html/mywebsql/config/blobs.php 
  inflating: /var/www/html/mywebsql/config/config.php 
  inflating: /var/www/html/mywebsql/config/constants.php
.
.
.
/var/www/html/mywebsql/themes/pinky/README.md 
  inflating: /var/www/html/mywebsql/themes/pinky/results.css 
  inflating: /var/www/html/mywebsql/themes/pinky/theme.css
  inflating: /var/www/html/mywebsql/themes/pinky/treeview.css 
   creating: /var/www/html/mywebsql/tmp/
  inflating: /var/www/html/mywebsql/tmp/.htaccess 
  inflating: /var/www/html/mywebsql/tmp/readme.txt

Change the ownership and file permission for MyWebSQL directory inside document root.

root@linuxhelp:~# chown -R www-data:www-data /var/www/html/mywebsql/
root@linuxhelp:~# chmod -R 775 /var/www/html/mywebsql/

Next install the following php extensions by running the following command and press y to continue with the installation.

root@linuxhelp:~# apt-get install php-pgsql -y
Reading package lists... Done
Building dependency tree     
Reading state information... Done
The following additional packages will be installed:
  libpq5 php7.0-pgsql
The following NEW packages will be installed:
  libpq5 php-pgsql php7.0-pgsq
0 upgraded, 3 newly installed, 0 to remove and 476 not upgraded.
Need to get 136 kB of archives.
After this operation, 494 kB of additional disk space will be used.
Get:1 http://in.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpq5 amd64 9.5.6-0ubuntu0.16.04 [78.2 kB]
Get:2 http://in.archive.ubuntu.com/ubuntu xenial-updates/main amd64 php7.0-pgsql amd64 7.0.15-0ubuntu0.16.04.4 [56.3 kB]
.
.
.
Creating config file /etc/php/7.0/mods-available/pgsql.ini with new version
Creating config file /etc/php/7.0/mods-available/pdo_pgsql.ini with new version
Setting up php-pgsql (1:7.0+35ubuntu6) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for libapache2-mod-php7.0 (7.0.15-0ubuntu0.16.04.4) ...

Restart the apache web server using the systemctl command and run it.

root@linuxhelp:~# systemctl restart apache2

Open the browser and navigate to following URL http://192.168.7.234/mywebsql. The MyWebSQL login page appears. Enter the required credentials and hit login.
browser

The MyWebSQL is running successfully. Now the user can manage the database, tables and schemas.
MYWebSQL

Wasn' t it an easy installtion procedure? The MyWebSQL is based on the WYSIWYG MySQL client written in PHP.

Tags:
noah
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is the purpose of MyWebSQL on Ubuntu?

A

If you are a beginner to MySQL administration and don’t need multiple functions phpmyadmin – will be enough for you.

Q

I have installed MyWebSql on my xubuntu system, however when I run the install.php script it says:-
"Sqlite Client library is not installed". What do I need to install on the server?

A

You need to enable either the 'sqlite' or sqlite3 extension in your php installation. It is a simple process, you can search online for 'adding extensions to php.ini'

Q

What is MyWebSQL on Ubuntu ?

A

MyWebSQL is free and open source MySQL Database Administration tool similar to PhpMyAdmin where the user can manage the MySQL database in a graphical way through web browser.

Q

What are the required PHP extensions for MyWebSQL on Ubuntu?

A

Install the following php extensions by running the following command

#apt-get install php-pgsql -y

Q

How to access MyWebSQL on Ubuntu?

A

you can access the MyWebSQL on Ubuntu from the web by accessing your local host

Related Tutorials in How to install MyWebSQL on Ubuntu

Related Tutorials in How to install MyWebSQL on Ubuntu

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to install MyWebSQL on Ubuntu

Related Forums in How to install MyWebSQL on Ubuntu

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to install MyWebSQL on Ubuntu

Related News in How to install MyWebSQL on Ubuntu

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Ryan ?
how to use visual traceroute tool

Am using traceroute command to check for the route. i got this tool while surfing. So pls help me out installation and usage of Visual traceroute tool.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.