I am using Ubuntu LTS 15.10. I am unable to install mysql workbench.
I have tried all version of mysql-version but still getting this issue:
Related
I am trying install MySQL 8 or 5.7 in my machine , But facing this issue with this
No package mysql-server available sometimes.
If I try this sudo yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
I am getting like this Examining /var/tmp/yum-root-gqFfuQ/mysql57-community-release-el7-9.noarch.rpm: mysql57-community-release-el7-9.noarch
can any one suggest me that way to install MySQL 8 or 5.7 in my system , System details listed below
VERSION="2018.03"
ID="amzn"
ID_LIKE="rhel fedora"
VERSION_ID="2018.03"
PRETTY_NAME="Amazon Linux AMI 2018.03"
ANSI_COLOR="0;33"
CPE_NAME="cpe:/o:amazon:linux:2018.03:ga"
HOME_URL="http://aws.amazon.com/amazon-linux-ami/"
Thanks.
Currently, MySQL 5.5 is installed in Amazon Linux AMI 2018.03. Now I want to upgrade MySQL to the latest version 8.0 and remove old MySQL 5.5 so that I can execute SQL scripts which runs successfully on MySQL 8.
How can we upgrade to MySql 8?
Here is OS details:
$ cat /etc/os-release
NAME="Amazon Linux AMI"
VERSION="2018.03"
ID="amzn"
ID_LIKE="rhel fedora"
VERSION_ID="2018.03"
PRETTY_NAME="Amazon Linux AMI 2018.03"
ANSI_COLOR="0;33"
CPE_NAME="cpe:/o:amazon:linux:2018.03:ga"
HOME_URL="http://aws.amazon.com/amazon-linux-ami/"
which rhel fedora version is that? So that as per OS version we can download specific MySQL rpm from MySQL server.
I would go with something like that:
yum install https://dev.mysql.com/get/mysql80-community-release-el6-3.noarch.rpm
yum update
that will install new source for mysql repo, and then you can go with:
yum install mysql-community-server
I set up Laravel Valet on my Mac and installed mysql which is 8.* version. I have projects with Laravel 5.4 which doesn't support mysql 8.* version. How can I set up mysql 5.7 version on Mac? Preferably with homebrew.
You can install MySQL 5.7 by Homebrew with:
brew install mysql#5.7
My production server is running MySql 5.6.
If I use brew install on my local machine I get version 8.0, which is not compatible with data from MySql 5.6.
So I completely uninstalled mysql and ran brew install mysql#5.6 and then prepended /usr/local/opt/mysql#5.6/bin to my path.
The problem is that the rails' mysql2 gem will not function without running the standard brew install mysql because it cannot find some file.
Any suggestions of how to run with an older version of mysql?
I am not a server administrator but hope that one can help me. Thanks!
I have a fresh CentOS 5.5 with VirtualMin installed.
I get this when starting MySQL:
Failed to start database :
sh: /etc/rc.d/init.d/mysqld: No such file or directory
IN ADDITION, I wish to upgrade from 5.0 mysql to 5.1 mysql. I have already used this command:
rpm -Uvh MySQL-shared-community-5.1.56-1.rhel5.i386.rpm
But in Webmin my MySQL version still shows up as mysql 5.0.77-4.el5_5.4, rather than upgrade 5.0 rpm just installs 5.1 along side it.
How do I upgrade to 5.1 and configure it to work? Thanks much.
If you already have mysql installed, try the "--replacepkgs" argument together with the "rpm" command.
Regarding sh: /etc/rc.d/init.d/mysqld: No such file or directory, it should be fixed once you install the newer mysql successfully.