Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'd like to examine some live MySQL queries so have just tried installing mtop on a Ubuntu 12.04 LTS box.
However when I try and install it using apt-get I get:
sudo apt-get install mtop
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mtop
Given that apt-get returns Unable to locate how do I install mtop for Ubuntu 12.04?!
install mytop instead of mtop
http://www.ubuntugeek.com/mytop-top-like-query-monitor-for-mysql.html
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 days ago.
Improve this question
Good morning fellow community members. I hope you can help me with the following question.
I have an application installed on an Ubuntu server which used MySql-Server and connected through a socket. The situation is that I have tried to install a 2nd web application on the server which uses Mariadb-server.
The issue is that after installing Mariadb-server, I still had access to the database installed in MySql-server (through the web application), however when I finished installing Maridb-server I decided to reboot the server After that, for some reason, I can no longer access the data that was hosted on MySql-Server.
At first glance the database has not been removed, it is simply inaccessible by the mariadb-server installation.
How can I get it back?
Thanks for your help.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I dont have both these packages on my system. I am not able to install any package due to same. Can anybody tell me how to install these without root access??
dpkg is the low level package tool of the Debian distribution (and derived distributions such as Ubuntu, Linux Mint and others). It is used to install single Debian packages (files with the .deb extension).
apt-get is a higher-level (user facing) program used to retrieve and install Debian packages on Debian systems. It does not work on CentOS, because CentOS uses a different package format (RPM) and cannot work with packages that were made for the Debian distribution.
Also, you can not install packages without root access (neither CentOS nor Debian packages).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there somewhere you can get an ISO image for linux - preferably CentOS or Ubuntu - with MySQL pre-installed and running?
On CentOS, you could install MySQL with:
yum install community-mysql community-mysql-server
On Ubuntu, with:
apt-get install mysql-server mysql-client
Debian has pre-installed mysql If you select option while install.
http://www.debian.org/CD/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I currently run a centos 6 server on media temple which is great for my needs but I have had some issues installing ffmpeg and various packages. Some of the yum installs are really old. Below is a list of the other packages available.
Ubuntu 12.04 - LTS Precise
Ubuntu 12.10 - Quantal
Ubuntu 10.04 - LTS Lucid
Ubuntu 13.04 - Raring
Fedora 18
Debian 7.0 - Wheezy
Debian 6.0 - Squeeze
CentOS 6
What are the advantages of the above? how different are they really? I am looking to build a website that will do a lot of video and audio manipulation server side.
Is there one that deals with this better than the other? Do not get me wrong. My Centos server has been great. Just trying to decide whether to stick with centos for my new hosting, or whether there is a advantage for me to use another one from the above list.
Install Ubuntu 12.10 on your local and see how it handles the packages you need. I find it much better when it comes to package management, dependency resolving, package compatibility ect.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to install a database, preferably MySQL, on my domain (Strato) to make my database accessible remotely.
Is it possible?
Has somebody tutorials on it?
I'm absolutelly inexperienced in this area. The only webserver I have ever set up was Apache (XAMPP).
Strato is a hosting provider. If you have the basic service, you can't install or use MySQL databases.
For other levels of service, see their FAQ.
Usually it's apt-get install mysql or zypper install mysql. It depends what Linux it's installed. Most likely you can also build from the sources. Then you need gcc and all tools. Apt-get install gcc or zypper install gcc. When you can disclose a bit more information maybe we can help?