I am trying to install vagrant for my Drupal sites on Windows 10 machine. But I am getting below error. Kindly suggest
Vagrant version: 2.2.14
Oracle VM version: 6.1
vagrant-hostsupdater (1.2.1, global)
vagrant-vbguest (0.29.0, global)
vagrant-winnfsd (1.4.0, global)
This error was caused due to Anti Virus Software(Sentinel). By uninstalling it I could fix this issue.
Related
I've been following the installation guide from https://www.azerothcore.org/wiki/digital-ocean-video-tutorial
During the compiling process, an my_bool error has occured and stopped the process. https://imgur.com/a/vDfCSim
From the github issues, I could only find that this could be related to incorrect MySQL, and the solution is to use MariaBD but I already use MariaDB.
Apparently the issue was using an outdated version of mysql/mariadb.
It's better to either use mysql 5.7 or 8.0 or latest mariadb version.
I'm trying to start MariaDB in the windows linux subsystem using
sudo apt-get update
sudo apt-get install mariadb-server
sudo service mysql start
but getting the following error:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory")
I know, this is not a new question, I read a lot about other solutions under Ubuntu to fix this, but nothing worked so far. Has anybody an idea how to get it going?
Merci A
I'm encountered with the same problem. Fortunately I found a solution at https://github.com/microsoft/WSL/issues/745#issuecomment-237412792
sudo /etc/init.d/mysql start
which works for me. Hope it works for you too.
Do you have already installed SQL on your Windows system?
Try to remove them and install MariaDB on WSL only
I had a similar problem starting MariaDB installed on an Ubuntu distro in WSL after already installing under the Windows host.
I found just stopping the Windows version was enough to enable the WSL Ubuntu version to run rather than having to uninstall the Windows version completely.
this post seems to be a little bit older but maybe it will help.
I installed a MariaDB on Debian 10 (WSL) and ran into the same problem.
After a little bit of research i noticed that the mysql service wasn't running.
with /etc/init.d/mysql start i start / restart the service and voila everything fine.
Hint: Have to do it after each Systemrestart!
I'm having problems trying to install Wordpress to Plesk on my VPS. Everytime i go install wordpress it gets 100% then shows this message?
ERROR: Call to undefined method PHosting_Apache::getPHPCliPath() (Adapter.php:134)
I have re-imaged the server a few times now and still get the same problem.
Server Software : CentOS 6 with Parallels Plesk Panel 12 (64-bit)
Any suggestions?
Installation of microupdates was not completed successfully. Re-install micro updates by executing the below command:
/usr/local/psa/admin/bin/autoinstaller --install-component base --select-product-id plesk --select-release-current --reinstall-patch
Here is what I did that helped:
Install PHP 5.6 (or latest)
[Find Plesk Add/Remove Components][1]
Locate PHP installation (mine was here)
[Drill down into PHP option][3]
Install latest PHP
I went back and installed wordpress and it went through. Hope this helps
I use Windows 8 and installed Virtualbox so i can access to a Linux (Ubuntu) System.
The most i still did to do this - so at this moment i have a working Virtualbox with Ubuntu 14.04 LTS.
In my case i need this Virtualbox with Linux for meteor.
The problem:
meteor uses nodejs and so i need to have symlinks access (i think its symlinks - i read a few about it)
Reference: How to run meteor app inside an Ubuntu VrtualBox and edit using an editor on a Windows host?
He describes the same problem i have now:
Error: EROFS, read-only file system '/media/sf_Shared/Dropbox/dev_uhurajr/chat/.meteor/local/.build320446.build/programs/server/npm/logging/main/node_modules'
So i tried to enabled Symlinks on my host (windows) this way:
VBoxManage setextradata YOURVMNAME VBoxInternal2/SharedFoldersEnableSymlinksCreate/YOURSHAREFOLDERNAME 1
Reference: http://www.ahtik.com/blog/fixing-your-virtualbox-shared-folder-symlink-error/
This works fine! When i check the extradata for my VM the field SharedFoldersEnableSymlinksCreate is on 1
I set this value for 2 folders. The shared folder on Windows and also the name of the shared folder on my Linux VM.
But .. the same problem. The following error occurs everytime meteor tries to write symlinks:
Error: UNKNOWN, unknown error '/media/Projekte/test/.meteor/local/.build320446.build/programs/server/npm/logging/main/node_modules'
So whats the right way to get this working ?
Guessing you were using Virtualbox version after 4.0, please:
Enable symlinks VBoxManage.exe setextradata YOUR_VM VBoxInternal2/SharedFoldersEnableSymlinksCreate/YOUR_SHARED_FOLDER 1
Run VirtualBox 'as admininstrator' on Windows.
Replace the YOUR_VM and YOUR_SHARED_FOLDER with your own value. You can check the value via VBoxManage.exe getextradata YOUR_VM enumerate
VirtualBox enabled symbolic for shared folder since 4.0, it's Windows permissions blocking you. You can either enable the permission for user or simply run VirtualBox as an administrator.
Please to refer the Virtualbox documentation:
Doc updated, please refer to the doc Shared Folders:
Starting with version 4.0, VirtualBox shared folders also support symbolic links (symlinks), under the following conditions:
The host operating system must support symlinks (i.e. a Mac, Linux or Solaris host is required).
Currently only Linux and Solaris Guest Additions support symlinks.
I made a development vm with setup and run scripts.
https://github.com/gfk-ba/meteor-dev-vm
Just put your meteor app in the app directory and follow the instructions in the readme.md
I am trying to install OracleClient 11g and initially i had a issue regarding JDK compatibility.
Error:
so i ended up uninstalling JDK 7 (64bit) and reinstalled JDK 6 (32bit) and edited sqldeveloper.conf for SetJavaHome.
SetJavaHome C:\Program Files (x86)\Java\jdk1.6.0_31
Now, once i click sqldeveloper.exe it loads up and throws an error as mentioned below
Error (i):
Error (ii):
I tried similar issue thread in stackoverflow but didn't help much. So any help is much appreciated.
Couldn't solve the problem but found out an alternative way.
Install JDK1.6 ( 32bit)
Install Oracle Client (32bit)
Note: even if u have OS 64bit, try installing 32bit JDK & Oracle client and u should not face this error.