Database on own webserver [closed] - mysql

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?

Related

Installation of Mysql-server and Mariadb-server on the same server [closed]

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.

How to reinstall MySQL in Cloud 9 IDE [closed]

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 7 years ago.
Improve this question
I have a workspace in Cloud 9 IDE which was created more than 2 years ago. At that time I created simple C application to test MySQL connection. I remember application worked at that time.
Now after a long period of time I try to recompile my test application but I found that there is no mysql.h header file in the Cloud 9 virtual machine.
mysql-ctl seems to work: it reports that mysql is running. but there is no mysql headres in the filesystem.
So I think I need to reinstall MySQL in Cloud 9 but I cannot find any documentation on this topic. Also it looks like their own package manager c9pm is not supported anymore.
So how can I reinstall MySQL in Cloud 9 virtual machine?
Since there was a completely new version Cloud9 almost a year ago (https://c9.io/blog/announcing-the-all-new-cloud9-development-environment/) I can imagine something like a compilation against mysql.h got broken. I would create a new workspace and transfer your files to that workspace (use File > Download Project). In the "new" Cloud9 you can simply use sudo apt-get install to install software rather than use c9pm.

Accessing mysql database control panel [closed]

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 was using wamp server where I could access the mysql database throgh 'localhost/phpmyadmin'. Recently, I've uninstalled the wamp server and installed mysql server in my pc. Now, how can I access to my mysql database like 'localhost/phpmyadmin' when using wamp?
WAMP is abbreviation of Windows, Apache2, MySQL and PHP.
phpMyAdmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web.
Localhost refers to a web server(like Apache2 or nginx or ...) which PHP can install on it.
So If you want to manage MySQL database with phpMyAdmin. You have to install WAMP :
Apache2
PHP
MySQL
phpMyAdmin
If you want just manage MySQL by phpMyAdmin do above steps.
#Sascha suggested in comments.
You can choose a better solution that doesn't need Apache2 and PHP :
Install Desktop MySQL managers like MySQL WorkBench (Free tool) instead of phpMyAdmin.

how to dpkg and apt-get packages on CentOS? [closed]

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).

installing mysql on cygwin [closed]

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 am trying to install mysql using cygwin. This guide seemed to be exactly what I wanted. I downloaded the bottom item on this page. Then I followed all the instructions however there is no configure file in the mysql directory. There is a cmake directory inside of which there is a configure.pl file. I'm not sure if I'm supposed to run make to compile this .pl file. Given that there are no make files I'm a little confused on how to proceed. Any insights would be awesome.
Why would you install MySQL under Cygwin when there is a perfectly fine Windows version available? Also the version you said you downloaded is for OS X, while Cygwin emulates Linux.
I advice you to use the Windows version because it will probably be far more stable, fast, etc, etc, due to the fact that you don't need to emulate nothing. Further if there is some reason you need to run it under Cygwin use the Linux binaries.
Cygwin lets you choose some binaries to be installed for you at install time, and maybe MySQL is amongst them, so if you rerun the Cygwin installer you might get lucky and avoid the trouble of compiling / configuring MySQL yourself.
Also; This question probably belongs on https://serverfault.com/ or https://superuser.com/ =)