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 last year.
Improve this question
I am new to php. I was already running mysql ver 8.0.27 on my mac 11.5 (BigSur)
Now i have installed XAMPP (8.0.15), Apache is running perfectly but MySQL Database is stopped and also localhost/phpmyadmin is not working. But my previously installed mysql is running, i am using it through workbench. Can i use my running mysql with it or need to change the port to run from XAMPP?
You should use modern dev stacks like Docker or Vagrant (I prefer docker) ... XAMPP is outdated. But it looks like a port problem. If you really want to use XAMPP, try changing the port numbers.
Also take a look at this video https://www.youtube.com/watch?v=YXWQTpSHIMc&ab_channel=BINARYHACK
Related
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 5 years ago.
Improve this question
I have everything configured and working great within my Xubuntu 16.04 machine, including localhost (I am using LAMP stack, apache2, php7.0).
I am struggling to configure the localhost on my Windows 7 machine so that I can view my work on my google chrome browser in the Windows environment. I wasn't able to find any tutorials on how to set this up. Do I need to configure this within the apache2.conf within the virtual machine or? Thanks for any help in advance.
I have tried localhost localhost:8080 and localhost:8081
If your computers are on the same network use the command "arp -a" on your windows machine to view all of the ip addresses on your network. Replace the localhost on your windows system with that of the one on the Xubuntu machine.
(Don't forget to add the port for the apache server!)
Localhost:8080 -> 192.186.0.30:8080
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 6 years ago.
Improve this question
I installed PhpMyAdmin and when I tried to run mysql I always get the same error:
ERROR 2002 (HY000): Can´t connect to local MySql server through socket 'var/run/mysqld/mysqld.sock' (2)
I have tried to unistall all packages including phpmyadmin, mysql, apache and purge them.
When I reinstall I have the same problem. Is the problem from mysql or from a bad configuration of PhpMyAdmin?
I have Linux Mint 18. Php version: 7.0.8, mysql version_ 5.7.16.
Thanks for your time.
What happens when you run:
service mysql status
in terminal?
Also when installing mysql are you installing mysql-server package?
EDIT: seems 2002 is lack of server, and only having mysql-client.
run sudo apt-get install mysql-server to fix this.
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 6 years ago.
Improve this question
I am stuck on installing Homestead. I am at the point where I am able to SSH into Vagrant but when I do so it isn't showing me any directories I created, in this case the dir named 'code' as per the tutorial I am following.
I am using:
Virtualbox 5.0.26
Homestead
Vagrant 1.8.4
Mac OSX El Capitan 10.11
Also when I visit the IP from the YAML file it just times out, interestingly though if I launch MAMP and I then revisit the site name 'fresh.app' it takes me to localhost, but if I quit MAMP it then times out...
So, to test I switched the ports in MAMP from using port 80 to start using 8888 and using 'fresh.app' as my address failed. Port issue or? Im new to this so please accept my apology if it something silly.
Personally, I've only used Homestead with Linux and Windows. However, from what I'm understanding, you shouldn't be using MAMP at all. Here are a couple of points to be aware of:
Have you entered fresh.app to point to the VM's IP in your hosts file (/etc/hosts)? I think this is the reason you are getting the time out.
Are you sure that the VM's subnet is not in use?
Have you tried using Laravel Valet which is specific for Mac developers? (check it out here https://laravel.com/docs/5.3/valet)
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
Is there a way to find out if more than 1 MySQL server installed on a server?
Situation: I'm running an Ubuntu 14.04 with MySQL server installed by plesk, however the service is not starting automatically. I'm assuming that I have another MySQL server which starts instead of the correct one.
Any guide will be appreciated.
use below command if any mysql service is running on your server-
ps -aux | grep mysql
It will show you how many mysql services are running on server or not.
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
Installing roundcube webmail: I have the DB set up (win serv 2008, MS SQL 2008 - though even that was a battle!) i can navigate to the installer but when I go to set up everything there is no SQL Server option in the list of DBs?
Anyone got any idea what thats all about? I can see MySql, MySqli and PgSql but no MSSQL.
Roundcube installer doesn't detect mssql!
Select with mysql option while you are install ms sql driver for php.
there is a complete installation guide http://www.ifunky.net/Blog/post/How-To-Install-RoundCube-With-hMailServer-and-Windows-2008-IIS7.aspx
Make sure you've activated the MSSQL extension in your php.ini. I don't know this script, but often installers first detect which database extensions are available and let you only use these.
So find your php.ini and search it for something like this:
extension=msql.dll
If you can't find the line, add it to the file (maybe restart your webserver) and try again.
It's because Roundcube Installer doesn't detect MSSQL, but you can install/run it without Installer.