Tag Info

Hot answers tagged

3

Installation To install MySQL, run the following command from a terminal prompt: sudo apt-get install mysql-server mysql-client During the installation process you will be prompted to enter a password for the MySQL root user. Once the installation is complete, the MySQL server should be started automatically. You can run the following command from a ...


3

Before to install the new versions, you should uninstall any other versions that you have installed before. Install Apache 2.4.4 Before installing Apache 2.4.4, you should install PCRE, otherwise it will not succeed. The process of installing PCRE is simple. After you downloaded it, run in terminal next commands: sudo ./configure sudo make sudo make ...


2

You are not likely to find the latest versions on any pre-built stack. You have 2 options : First, download ubuntu specific binaries (if they exist) from the corresponding sites. Second, download the source code from said sites and compile locally. Now, unless there is a very specific option/need that is not offered/met in the available packages, I ...


1

I have no experience with the tool you linked on your question, but it does not seem what you are looking for. LAMP stands to Linux, Apache MySQL and PHP and is a known development stack. But as you said you are going to use Spring(Java), so this does not suit you. First you will need to install MySQL. This can be achieved by installing "MySQL Server" on ...


1

Since MySql Workbench did not connect to multiple databases at once, I found Tora, a database Management Tool from Oracle. (http://sourceforge.net/projects/tora). You can get build instructions and a precompiled deb for 12.04 here: http://help.ubuntu.com/community/HowToBuildToraWithOracle . It is also available in the official ubuntu-repositories ...


1

It's not an error, you should run apt-get dist-upgrade because in this case, the upgrade of mysql involve adding or removing some others packages. If you are afraid of doing so, you can also try to run apt-get install mysql-server-5.5 which will trigger the update of this particular package (and i think it will handle the 2 others as dependencies).


1

Maybe it is an apache permission problem. Try to put in your /etc/apache2/sites-available/default the following lines <Directory /> AllowOverride All </Directory> and check that the /var/www folders owner is www-data ================================================================================== Install mysql server: sudo apt-get install ...


1

Instead of using lamp-server and tasksel, I recommend people to install apache and mysql the normal way, which is how they are usually setup on servers. sudo apt-get install apache2 php5 libapache2-mod-php5 mysql-server php5-mysql sudo service apache2 restart This is compatible with how many other packages that are installed. For instance, you can do ...


1

tar cannot create an archive with data received from standard input, so you must first dump the database and then tar it. To save space you can compress the dumped data on the fly. Install mysql-client (apt-get install mysql-client) on the remote machine and run mysqldump from there: mysqldump -h <server-hostname-or-ip-address> <options> ...



Only top voted, non community-wiki answers of a minimum length are eligible