Quantcast
Channel: MySQL Forums - Install & Repo
Viewing all 7243 articles
Browse latest View live

MySQLInstallerConsole default_authentication_plugin arguemnt (no replies)

$
0
0
Hi,
I try to perform silent installation of mysql server via MySQLInstallerConsole.

The command I use is "MySQLInstallerConsole community install -silent server;8.0.13;x64:*:type=config;servertype=Server;openfirewall=true;generallog=true;serverid=3306;enable_tcpip=true;port=3306;default_authentication_plugin=default_authentication_plugin;rootpasswd=SomePassword;installdir="C:\Program Files\MySQL\MySQLServer 8.0";datadir="D:\database":type=user;username=SomeUsername;password=Somepassword;role=DBManager".

But the installator return a "MySQL Server 8.0.13 - default_authentication_plugin is not a proper value for type DefaultAuthenticationPlugin"message.

The whole output of commaind is
"=================== Start Initialization ===================
MySQL Installer is running in Community mode

Attempting to update manifest.
Initializing product requirements
Loading product catalog
Checking for product catalog snippets
Checking for product packages in the bundle
Categorizing product catalog
Finding all installed packages.
Your product catalog was last updated at 14.01.2019 10:17:48
=================== End Initialization ===================



MySQL Server 8.0.13 - default_authentication_plugin is not a proper value for type DefaultAuthenticationPlugin"

My question is: What are the proper values for default_authentication_plugin arguments? What is the proper value for mysql_native_password?

Thanks.

Error: Access denied for user 'root'@'localhost' - frequently getting this error (no replies)

$
0
0
I am receiving below alert, i tried resetting the password but didn't help

[root@XXXX~]# mysql_secure_installation

Securing the MySQL server deployment.

Enter password for user root:
Error: Access denied for user 'root'@'localhost' (using password: YES)
[root@XXXX~]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
[root@XXXXX~]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
[root@XXXX~]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
[root@XXXX~]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

Installing a MySQL Launch Daemon on a Mac (no replies)

$
0
0
My company is using MySql 5.6. As a developer, I want MySql to restart every time I reboot my Mac. The instructions tell me to go to System Preferences and launch the MySQL preference. But on my Mac (Mojave, OSX 10.14.3) there is no such preference. How do I install a MySQL Launch Daemon on Mojave?

Plugin 'unix_socket' is not loaded after MariaDB replacement (no replies)

$
0
0
Hello,
On Debian, I tried to replace MariaDB by MySQL 5.7 with command:

apt install mysql-server

But I am stuck to mysql_secure_installation with:

Error: Plugin 'unix_socket' is not loaded

I tried to add plugin-load-add=auth_socket.so to /etc/mysql/mysql.conf.d/mysqld.cnf but it does not solve my problem.

Thanks,

why companies implement erpsystems (1 reply)

$
0
0
ERP : Enterprise Resource Planning

Why #erpsolution:

Integration of all departments

Increases & Improves Interaction

Improving internal business processes

Improving company performance

Reducing IT expenses and labor costs

Improving interactions between internal employees and external organizations

For more Details:TimeLine ERP INDIA PVT LTD

Drop and recreate sys schema - no harm ? (no replies)

$
0
0
As I understand sys schema is new in 5.7.7 and above
it's a 'helper' schema to mostly used by performance schema
ie to keep track of historical data - true or false ?

I have MySQL 5.7.22 sys_config TABLESPACE ID miss match problem on many db servers.

I keeps crashing my 5.7 randomly - it tries to access sys.sys_config table and there is a miss match and it crash and restart mysql. I don't know what mysql try to do internaly to the sys schema that caused innodb to crash.


alter.log:
[ERROR] InnoDB: Failed to find tablespace for table `sys`.`sys_config` in the cache. Attempting to load the tablespace with space id 12282
[ERROR] InnoDB: In file './sys/sys_config.ibd', tablespace id and flags are 21 and 33, but in the InnoDB data dictionary they are 12282 and 33.
[ERROR] InnoDB: Operating system error number 2 in a file operation.
[ERROR] InnoDB: The error means the system cannot find the path specified.
[ERROR] InnoDB: Could not find a valid tablespace file for `sys/sys_config`.
[Warning] InnoDB: Cannot calculate statistics for table `sys`.`sys_config` because the .ibd file is missing.

BUT the file is there....

mysql> desc sys_config;
ERROR 1146 (42S02): Table 'sys.sys_config' doesn't exist


# cd /var/lib/mysql/sys/
# /var/lib/mysql/sys]# ls -atlhr sys_config.ibd
-rw-r----- 1 mysql mysql 96K Nov 22 15:05 sys_config.ibd


Current FIX
================

drop database sys ;
\! rm -fr /var/lib/mysql/sys
source /usr/share/percona-server/mysql_sys_schema.sql
desc sys.sys_config ;
select count(*) from sys.sys_config;


Anyone see any problem with this?

ie drop sys schema
and then create a blank new sys schema
(I know all past data will be lost but I don't need it)

it is impossible to install to Mac OS mojave (no replies)

$
0
0
I tried to install Mysql on my mac.
but the Operating System refuses any accesses.

$ brew link mysql
Error: No such keg: /usr/local/Cellar/mysql

$sudo echo 'export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"' >> ~/.bash_profile
-bash: /Users/user/.bash_profile: Permission denied

8.0.13 --> 8.0.15 MySql Server Fails with error code = 1265 (1 reply)

$
0
0
After Upgrading from MySql 8.0.13 (compiled from sourcecode) to MySql 8.0.15, the MySql Server can not start.
Log:
2019-02-12T10:09:52.275336Z 1 [ERROR] [MY-013178] [Server] Execution of server-side SQL statement 'INSERT INTO routines SELECT * FROM mysql.routines' failed with error code = 1265, error message = 'Daten abgeschnitten für Feld 'sql_mode' in Zeile 7'.
2019-02-12T10:09:52.302630Z 0 [ERROR] [MY-010020] [Server] Data Dictionary initialization failed.
2019-02-12T10:09:52.302856Z 0 [ERROR] [MY-010119] [Server] Aborting


"Daten abgeschnitten für Feld" means "Data truncated for field" - its a german version ...

table checker does not find any errors - how can I solve this problem ?

yours sincerely
Robert

I did't find new changes in mysql update (no replies)

$
0
0
Can you give me details about what you have changes the in MySQL after the latest update

Connections refused after reboot until logging into workbench (2 replies)

$
0
0
I have installed 8.0.12 on Win server 2016 and after rebooting the server or simply restarting the MySQL service, MySQL refuses connections until I login to workbench. Once I login to workbench connections are accepted again and MySQL functions as expected.

I haven't encountered this behavior in the past when I've worked with MySQL and I can't imagine this is expected behavior so I can only assume there is a configuration issue.

Any help in getting MySQL to accept connections without intervention after reboot would be appreciated.

E: Sub-process /usr/bin/dpkg returned an error code (1) (1 reply)

$
0
0
Hi, I am installing MySQL inside Windows subsystem (Ubuntu) and whenever I type apt-get install mysql-server I get the error message:

mysql-server-5.7
E: Sub-process /usr/bin/dpkg returned an error code (1)

I am happy to share the full bash history but I am out of ideas, already tried uninstalling and re-installing.

Why MySQL will auto be kill by systemctl start? (1 reply)

$
0
0
Hi, I get a problem about MySQL will auto be kill by systemctl start pattern, I have to ask for your help, please help me and tell me how to fix it, thank you very much.

MySQL:8.15
CentOS:7.5

install by mysql-shell-8.0.15-linux-glibc2.12-x86-64bit

vim /etc/my.cnf:

[mysql]
#default-character-set=utf8

[mysqld]
server-id=1
basedir=/usr/local/mysql
datadir=/data/mysql
log-error=/data/mysql/log/mariadb/error.log
port=3306
socket=/data/mysql/mysql.sock
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
default_authentication_plugin=mysql_native_password
symbolic-links=0
[mysqld_safe]
log-error=/data/mysql/log/mariadb/mariadb.log
pid-file=/data/mysql/run/mariadb/mariadb.pid
!includedir /etc/my.cnf.d


vim /usr/lib/systemd/system/mysql3306.service;
[Unit]
Description=mysql3306 service
SourcePath=/etc/init.d/mysql.server
Before=shutdown.target # 关机前操作

[Service]
User=mysql # 此用户必须存在,即为启动mysql的用户
Group=devops
Type=forking
PIDFile=/data/mysql/tmp/mysqlservice.pid
ExecStart=/etc/init.d/mysql.server start
ExecStop=/etc/init.d/mysql.server stop

[Install]
WantedBy=multi-user.target


systemctl daemon-reload
systemctl start mysql3306.service

----------------------------------------------------

ssh process1:
[mysql@bogon tmp]$ systemctl start mysql3306.service
==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units ===
Authentication is required to manage system services or units.
Authenticating as: lee
Password:
==== AUTHENTICATION COMPLETE ===


ssh process2:

[mysql@bogon mysql]$ ps axu | grep mysql

mysql 22040 0.0 0.0 134820 1532 pts/2 S+ 11:58 0:00 systemctl start mysql3306.service
mysql 22041 0.0 0.0 15424 820 pts/2 S+ 11:58 0:00 /usr/bin/systemd-tty-ask-password-agent --watch
mysql 22042 0.0 0.2 296800 5340 pts/2 Sl+ 11:58 0:00 /usr/bin/pkttyagent --notify-fd 5 --fallback
mysql 22056 0.1 0.0 113312 1620 ? Ss 11:58 0:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql
mysql 22377 2.5 20.7 2261320 386548 ? Sl 11:58 0:01 /usr/local/mysql/bin/mysqld --defaults-file=/etc/my.cnf --basedir=/usr/local/mysql --datadir=/data/mysql --plugin-dir=/usr/local/mysql/lib/plugin --log-error=/data/mysql/log/mariadb/mariadb.log --pid-file=/data/mysql/run/mariadb/mariadb.pid --socket=/data/mysql/tmp/mysql.sock --port=3306



[mysql@bogon mysql]$ systemctl status mysql3306.service
● mysql3306.service - mysql3306 service
Loaded: loaded (/usr/lib/systemd/system/mysql3306.service; enabled; vendor preset: disabled)
Active: activating (start) since Thu 2019-02-21 12:00:58 CST; 15s ago
Control: 22464 (mysqld_safe)
CGroup: /system.slice/mysql3306.service
├─22464 /bin/sh /usr/local/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql
└─22785 /usr/local/mysql/bin/mysqld --defaults-file=/etc/my.cnf --basedir=/usr/local/mysql --datadir=/data/mysql --plugin-dir=/usr/local/mysql/lib/plugin --log


*************but about 1min30s pass
[mysql@bogon mysql]$ systemctl status mysql3306.service
● mysql3306.service - mysql3306 service
Loaded: loaded (/usr/lib/systemd/system/mysql3306.service; enabled; vendor preset: disabled)
Active: activating (start) since Thu 2019-02-21 12:00:58 CST; 1min 28s ago
Control: 22464 (mysqld_safe)
CGroup: /system.slice/mysql3306.service
├─22464 /bin/sh /usr/local/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql
└─22785 /usr/local/mysql/bin/mysqld --defaults-file=/etc/my.cnf --basedir=/usr/local/mysql --datadir=/data/mysql --plugin-dir=/usr/local/mysql/lib/plugin --log...
[mysql@bogon mysql]$ systemctl status mysql3306.service
● mysql3306.service - mysql3306 service
Loaded: loaded (/usr/lib/systemd/system/mysql3306.service; enabled; vendor preset: disabled)
Active: failed (Result: timeout) since Thu 2019-02-21 12:02:31 CST; 2s ago
Process: 22464 ExecStart=/usr/local/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql (code=exited, status=0/SUCCESS)


------ it auto be kill.
what's wrong?

bionic repo.mysql.com - invalid signature (2 replies)

$
0
0
Hello,

your repo repo.mysql.com has invalid signatures since min. yesterday.
this is an gpg error based on invalid signature.

wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.10-1_all.deb
dpkg -i mysql-apt-config_0.8.10-1_all.deb
apt-get update
Holen:6 http://repo.mysql.com/apt/ubuntu bionic InRelease [16.9 kB]
Fehl:6 http://repo.mysql.com/apt/ubuntu bionic InRelease
Die folgenden Signaturen waren ungültig: EXPKEYSIG 8C718D3B5072E1F5 MySQL Release Engineering <mysql-build@oss.oracle.com>
Paketlisten werden gelesen... Fertig
W: GPG-Fehler: http://repo.mysql.com/apt/ubuntu bionic InRelease: Die folgenden Signaturen waren ungültig: EXPKEYSIG 8C718D3B5072E1F5 MySQL Release Engineering <mysql-build@oss.oracle.com>
E: Das Depot »http://repo.mysql.com/apt/ubuntu bionic InRelease« ist nicht signiert.
N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).

Please fix,
Hans

p.s. mysql-build@oss.oracle.com is unavailable...

Install MySQL Connector on Centos Server (no replies)

$
0
0
I have installed mysql-connector-odbc-5.3.7-linux-glibc2.5-x86-64bit ( https://www.youtube.com/watch?v=5fmo-fN4eWA ) and I believe I have the two files required in root/mysql-connector-odbc-5.3.7-linux-glibc2.5-x86-64bit/lib

[root@662803 mysql-connector-odbc-5.3.7-linux-glibc2.5-x86-64bit]# cd lib
[root@662803 lib]# ls -lrt
total 21896
-rwxr-xr-x. 1 7161 31415 11206953 Nov 29 2016 libmyodbc5a.so
-rwxr-xr-x. 1 7161 31415 11206861 Nov 29 2016 libmyodbc5w.so

The final step before I can use this drive in php with the mysql_odbc function, I understand, is to create or edit a Secure Agent File as follows:

[MySQL ODBC 5.3 Unicode Driver]
Description=ODBC for MySQL
Driver=mysql-connector-odbc-5.3.7-linux-glibc2.5-x86-64bit/lib/libmyodbc5w.so
Setup=mysql-connector-odbc-5.3.7-linux-glibc2.5-x86-64bit/lib/libmyodbc5w.so
FileUsage = 1

Do the lines above need to be added to odbc.ini or to some other file - if so what file and does it exist in a default install ? Any help here would be much appreciated. Thanks.

Expanding a Small Business marketing directors managers email lists (no replies)

$
0
0
The CEO Email List for instance is one such list that facilitates business ... data for the ChiefExecutive Officers email database, so as to keep the list exhaustive and ... Satisfaction; Frequently Updated; Prospective enough to Create High Leads. To that end, we build products and design experiences we would want for ourselves. Anthony Casalena is the Founder and CEO of Squarespace, which he started . at a number of organizations including database security vendor Application . As the Chief Marketing Officer of Squarespace, Kinjil leads the company Buy Prepackaged & Customized CMO Mailing Lists, Chief Marketing Officers Database And CMO . By reviewing your campaign specifications we can create an exclusive list that is guaranteed to ...CEO Email List Find Email Addresses of any company's CEO, CFO, VP, Director with this B2B sales prospecting tool. This software enables you to import leads Chief design officer (sometimes CDO) or design executive officer (DEO) is a corporate title They may also be responsible for aspects of advertising, marketing, and . CGD" Gamingbuddy official site; ^ "3M Names Eric Quint Chief Design Officer VP of Design Education at InVisionApp Inc . Director of User Experience . Email newsletters common to subscribers on the list of email addresses are noted. At USAA, we recently gathered all of our designers and held If you take a look at the list of open product positions at the end of my . If you are aCEO or exec recruiter and you are looking for a head of . With some exceptions, it it is important that this role be a peer to the CTO and the VP Marketing. is to develop a strong team of product owners and designers. In the last four years, CEO Heather R Morgan has helped over 550 B2B companies . Everyone knows it's important to create a buyer profile, but Heather believes the Heather recommends narrowing the email list down until you think at least . Let's say you want to targetChief Marketing Officers Chief Design Officer . Senior Vice President Worldwide Marketing . Isabel Ge Mahe. Vice President and Managing Director An email list is a database of email subscribers who have opted in to ... and served as the VP of marketing for Bizness Apps and Roambi. You can use these strategies to create strong relationships with your Menu head. Are you planning to gain leads ROI from ongoing sales campaigns? Avail our affordable Chiefengineering officer email list to get the most qualified leads. The list below contains some of the most important job titles with which to . Brand Manager; Creative Director; Marketing Data Analyst; Marketing Technologist . While the content creator might be your chief writer, for example, you might . artists, copywriters, sales teams and marketers to create a vision

seemore.....http://www.latestdatabase.com/

Package MySQL Components In 3rd Party Installer (4 replies)

$
0
0
Hi,
I am new to MySQL. I am a software programmer, developing a product that will utilize MySQL under the hood to log/manage test results. I would like to package MySQL server, Connector/ODBC, and a prepopulated database into my 3rd party installer (LabVIEW based). My goal is to include everything that is needed to install the software such that the user does not need to configure anything. Is there any documentation available that details the files I should include (for components previously referenced) in my installer and where they should be installed? Any help along these lines would be greatly appreciated. Thanks in advance!

Brooks

Can I Install MySql 5.6.41 along side with 3.23.55 on same machine (no replies)

$
0
0
Hi All,

We have an application using MySQL 3.23.55 on a machine.

We want to have another application which uses MySQL 5.6.41 on the same machine.

Both versions 3.23.55 and 5.6.41 are community editions

Would there be any problem if we install 5.6.41 on the same machine as 3.23.55? We will keep different port for new application.

Please advice.

Thanking you in advance.

Regards,
Dewang Bhansali

error while installing mysql (1 reply)

$
0
0
getting below error when tried to install using rpm:

command : rpm -ivh MySQL-server-community-5.1.73-1.rhel5.x86_64.rpm


file /usr/share/mysql/serbian/errmsg.sys from install of MySQL-server-community-5.1.73-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.47-1.el7_2.x86_64
file /usr/share/mysql/slovak/errmsg.sys from install of MySQL-server-community-5.1.73-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.47-1.el7_2.x86_64
file /usr/share/mysql/spanish/errmsg.sys from install of MySQL-server-community-5.1.73-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.47-1.el7_2.x86_64
file /usr/share/mysql/swedish/errmsg.sys from install of MySQL-server-community-5.1.73-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.47-1.el7_2.x86_64
file /usr/share/mysql/ukrainian/errmsg.sys from install of MySQL-server-community-5.1.73-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.47-1.el7_2.x86_64




If we use --force option then it proceeds, but with the following eror at the end :

Starting MySQL.Manager of pid-file quit without updating fi(FAILED)


Please help.

Can't get past Visual Studio (no replies)

$
0
0
Hi All,

I have a Windows 10 Pro, 64-bit computer. I have tried to install MySQL v5.7.20.0 several times. I downloaded and installed Visual C++ 2013 run time that I found linked to in another post. This didn't help. It still doesn't pass the Visual Studio requirement. The exact requirement message is: 'Visual Studio 2012, 2013, 2015 or 2017 must be installed.'

Does this mean I have to buy the full version of the software?


Thank you for any help,

Pre-request to install MySQL 5.7.25 (1 reply)

$
0
0
There is pre-request checklist,settting on oracle installation request.
is there any pre-request checklist , or how to find the required packages/stetting if we want install MySQL 5.7.25

I want upgrade current 5.7.x to latest 5.7.25 on Oracle Linux 6, but it was not allow to install as it request multiple lays dependencies.anyone know how to settle this other than try install the package one by one. thanks.

[root@virtual-101 mysql5.7.25]# rpm -Uhv --force *.rpm
warning: mysql-commercial-client-5.7.25-1.1.el7.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
error: Failed dependencies:
libc.so.6(GLIBC_2.14)(64bit) is needed by mysql-commercial-client-5.7.25-1.1.el7.x86_6 4
libc.so.6(GLIBC_2.17)(64bit) is needed by mysql-commercial-client-5.7.25-1.1.el7.x86_6 4
libstdc++.so.6(GLIBCXX_3.4.15)(64bit) is needed by mysql-commercial-client-5.7.25-1.1. el7.x86_64
libc.so.6(GLIBC_2.14)(64bit) is needed by mysql-commercial-embedded-5.7.25-1.1.el7.x86 _64
libc.so.6(GLIBC_2.17)(64bit) is needed by mysql-commercial-embedded-5.7.25-1.1.el7.x86 _64
libstdc++.so.6(GLIBCXX_3.4.15)(64bit) is needed by mysql-commercial-embedded-5.7.25-1. 1.el7.x86_64
libc.so.6(GLIBC_2.14)(64bit) is needed by mysql-commercial-embedded-compat-5.7.25-1.1. el7.x86_64
libc.so.6(GLIBC_2.17)(64bit) is needed by mysql-commercial-embedded-compat-5.7.25-1.1. el7.x86_64
libstdc++.so.6(GLIBCXX_3.4.15)(64bit) is needed by mysql-commercial-embedded-compat-5. 7.25-1.1.el7.x86_64
libc.so.6(GLIBC_2.14)(64bit) is needed by mysql-commercial-libs-5.7.25-1.1.el7.x86_64
libc.so.6(GLIBC_2.17)(64bit) is needed by mysql-commercial-libs-5.7.25-1.1.el7.x86_64
libc.so.6(GLIBC_2.14)(64bit) is needed by mysql-commercial-libs-compat-5.7.25-1.1.el7. x86_64
libc.so.6(GLIBC_2.17)(64bit) is needed by mysql-commercial-libs-compat-5.7.25-1.1.el7. x86_64
libc.so.6(GLIBC_2.14)(64bit) is needed by mysql-commercial-server-5.7.25-1.1.el7.x86_6 4
libc.so.6(GLIBC_2.15)(64bit) is needed by mysql-commercial-server-5.7.25-1.1.el7.x86_6
Viewing all 7243 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>