0
votes
5answers
37 views

Insert into mysql from linux terminal

I have a question. i can insert into mysql database from linux terminal a record with this command: mysql dbTest insert into tablename values(1,"b","c") Now i have a file in Linux with some records ...
0
votes
0answers
14 views

We need you to run a security audit on all linux servers that run MySQL within our subnet. Is this doable and if so, how would it be done? [duplicate]

I am trying to find a way to run a security audit on all servers that use mysql within our subdomain for possible intrusions.
0
votes
0answers
14 views

MySQL optimization or why the server is worsened

Please advise me how can I optimize my MySQL server. Or advise which way to look. Maybe someone had similar problems? Over the past two weeks the MySQL server dropped 2 times. I began searching for ...
1
vote
0answers
25 views

How can i install mysql-client of 32bit into ubuntu 12.04 of 64bit?

jinlong@long:~$ sudo apt-get install mysql-client-5.5:i386 [sudo] password for jinlong: Reading package lists... Done Building dependency tree Reading state information... Done Some ...
-2
votes
0answers
16 views

Send data from cutecom emulator to mysql [closed]

I am using a TTL device which sends me data every 5sec to my cutecom emulator. As I know cutecom has an option to directly save the data to a file (I didn't do it yet). My question is if it is ...
-1
votes
0answers
25 views

We need you to run an audit on all linux servers that run MySQL within our subnet. Is this doable and if so, how would it be done? [closed]

Like the title says, is this doable? It is a security audit the CTO wants to have done. Sorry I'm a Help Desk Junior Sys Admin that needs to take over the duties of a Sr Sys Admin that quit without ...
0
votes
2answers
29 views

I get no results from ssh2_exec() with a mysql command

I got a problem. My PHP script abort if i run an mysql command: ssh2_exec($session, 'mysql -sse "SELECT COUNT(*) FROM table"'); With putty is the command no problem. Any other commands like 'll ...
3
votes
0answers
41 views

CREATE TRIGGER sys_exec and python

my python on /usr/esercizi/ is: #!/usr/bin/python import datetime now = datetime.datetime.now() aa = now.strftime("%Y-%d-%m %H:%M | %S") out_file = open("test.txt","w") out_file.write("La data di ...
0
votes
1answer
18 views

Insert data to Mysql via minicom hyperterminal

I will describe my project and I would like some directions or steps of how can I do it. I am using Raspberry Pi with Raspian(like Debian). I connected a TTL device via USB which gives me some results ...
1
vote
2answers
18 views

How to copy MySQL InnoDB database from Windows server to Ubuntu Linux server?

To upgrade our application deployment platform from Windows to Ubuntu Linux Server, we need copy a MySQL InnoDB database from Windows to Linux server, and I tried 2 ways to do it: 1, use mysqldump ...
0
votes
1answer
19 views

change innodb_log_file_size variable value for Amazon RDS MYSQL Linux server

we are using Amazon RDS linux server for MYSQL. what is the way to change my.cnf file variable values ?? i am trying to change innodb_log_file_size variable. Can you please update me which is the ...
0
votes
1answer
30 views

MySQL database hangs due to disk journaling?

Occasionally one of our Linux MySQL database servers will hang for a while, creating a long queue of active queries. After 10-20 mins, service resumes as normally. This happens in kern.log: May 14 ...
0
votes
1answer
34 views

Redirection of MySQL Queries into a log/text file in shell script and read the file for particular string

I have written a shell script MySQL_Test.sh to connect to the MySQL database from linux shell and execute three different select statements like the following, Select count(*) as My_Column_Name from ...
1
vote
1answer
48 views

SQLException: No suitable driver found for jdbc:mysql://localhost:3306/dbname

I've inherited a project (and I have absolutly no experience of Java) and I'm rather stuck. We have a server running redhat, which I needed to update one of the jar files. So I simply copied up the ...
0
votes
1answer
17 views

Failed to install libmysql++-dev on debian

I tried to install libmysql++-dev package on my machine but failed with below errors. I already done apt-get update and apt-get update on the machine. 22:28:03-root@debian-isis-> apt-get install ...
0
votes
2answers
44 views

awk create a bulk MySQL insert from csv

I have a huge CSV file with data, I'm trying to generate mySQL bulk insert statement. Data presented as follows in CSV ...
-1
votes
0answers
29 views

Mysql server crashes [closed]

My mysql server crashes every time I visit my website. I'm guessing there's a queue of mysql queries that are too long . So I have tried to kill all mysql processes with killall mysqld But it's not ...
0
votes
1answer
23 views

How do you detect the issue causes Passenger application instances keeps consuming more and more memory?

Here it comes: I have a Rails application running on a RedHat server. I use Passenger Standalone v3.0.19 to serve it. The database is MySQL. Recently I found that some of the Passenger Application ...
0
votes
1answer
19 views

Linux/mysql writing mysql table output to a file AND keeping mysql formatting.

I am using a command like the one below in mysql. And when it displays the table data it is formatted in a very clean table with even spacing and | as column separators. SELECT * FROM TABLE_NAME; ...
0
votes
4answers
34 views

mysql dump 200DB ~ 40GB from one server to another

What would be the most efficient way for me to export 200 databases with a total of 40GB of data, and import them into another server? I was originally planning on running a script that would export ...
1
vote
0answers
36 views

not seeing mysql general logs

SELECT @@GLOBAL.general_log_file says that the general log is at /var/lib/mysql/dev.log. So I do SET GLOBAL general_log = 'ON' to make it so the general log is on, run a query, and check ...
0
votes
2answers
40 views

Issues inserting unsigned char array into database

Here's my code. It is supposed to do 254 ARP requests and store the ip and mac addresses into an unsigned char array, and after that store them into a data base. It all seems to work perfect except ...
1
vote
1answer
33 views

Can I find mysql version from data files, need for data restoration

I have a very odd situation going on here. I had a linux box running ubuntu 8.10 and MySQL server with a Wordpress installation on it hosting an internal blog for our company. The machine that this ...
0
votes
1answer
46 views

Can't connect to fresh mysql; password issue?

I'm new to setting up my own database server and linux server, but I'm working on a project that needs to use phpCake and mysql. I have a turnkey linux install of LAMP, with phpCake installed on it. ...
0
votes
1answer
41 views

call python script from php that connects to MySQL

I am able to easily call a python script from php using system(), although there are several options. They all work fine, except they all fail. Through trial and error I have narrowed it down to it ...
0
votes
0answers
16 views

Different data directory for different database in mysql using linux OS [closed]

I am running Linux operation system,i wanted to create two database and i wanted to keep these database file into different location [not in default location] Ex- home\folder1\databasefilename1 and ...
2
votes
1answer
36 views

Python background process not writing to MySQL db

I apologize if this question has been asked before, but I was unable to find any record of this issue. Full disclosure: I've only been using Python for a few months and MySQL for about 1 month. I've ...
0
votes
1answer
28 views

Windows client - MYSQL server on linux

I have a Winforms desktop app that need to read/write data from/to a MYSQL database. The MYSQL server is on a machine that runs on Linux OS. I need to know if a .NET connector is to be used or an ODBC ...
0
votes
0answers
17 views

'ED_UNASSIGNED' undeclared during mysql installation from sources

I'm getting an error during mysq installation from sources [ 0%] Building C object cmd-line-utils/libedit/CMakeFiles/edit.dir/chared.c.o /root/mysql/mysql-5.5.31/cmd-line-utils/libedit/chared.c: In ...
-2
votes
0answers
58 views

Linux bash script to convert MySQL tables encoding to UTF8 [closed]

I'm looking for a Linux bash script to be given DB name and to alter tables encoding to utf8. maybe someone did such thing and willing to share it out loud? 10x
0
votes
1answer
85 views

call external script with mySQL trigger WHITOUT sys_exec on ubuntu ARMHF

I need to call an external script from a trigger to intercept every insert in the DB. This because I can't poll for that value, I'm coding for an embedded system with ARM architecture and only 250MB ...
-1
votes
1answer
42 views

configure a server for java 2 ee web application from scratch [closed]

i have developed an application with java 2 EE . i am deploying it on tomcat server ,i also use MySQL database with hibernate framework, and for security measures i am using spring security. the ...
0
votes
0answers
27 views

mysqldump: Got error: 1017: Can't find file: 'drupal_install_test' (errno: 2) when using LOCK TABLES [migrated]

I'm trying to backup a drupal site database but I'm having some issues. When I ran the following command: mysqldump -uroot -p drupaSite > drupaSite.sql I get the following error: mysqldump: Got ...
1
vote
2answers
298 views

MySQL Server does not start on Raspberry Pi

I am working with a Raspberry Pi running Debian Linux. I am trying to install MySQL Server and run it and here is what I have done: # sudo apt-get install mysql-server mysql-client php5-mysql No ...
0
votes
2answers
22 views

MySQL database with links

I run linux, and have made a MySQL database by using the Terminal. I want to put a bunch of links for youtube videos in the database. How would I go about putting links in the database? Can I do it ...
0
votes
2answers
45 views

Run a Cron Job from 1 out of 4 identical Web servers all with the same job

I'm using AWS Amazon Web Services and I have 4 identical Web Servers. I have a cron job setup to sent out emails that only needs to run from one server but exists on all 4. Everything on these web ...
0
votes
2answers
65 views

How to run JDBC code from terminal?

I have compiled my code using -cp <mysql-connector-java jar file>. There were no errors during the compilation. All the class files were created To run the code, I went to one directory higher ...
0
votes
0answers
35 views

How do I asbuilt a web server configuration? [closed]

I build a LAMP web server. I had to choose which version of Linux (Centos 6.2, etc), Apache, MySQL, and PHP to use. I needed the SOAP add-on for PHP and added it. I decided to change MySQL to ...
0
votes
1answer
33 views

Scandinavien characters in mysql are not shown correctly

I have a problem when inserting in a table in my database. The server running is Ubuntu: Distributor ID: Ubuntu Description: Ubuntu 12.04.2 LTS Release: 12.04 Codename: precise I ...
0
votes
1answer
58 views

Connect Winforms client to mysql on linux server

I have developed a .net 4.0 Windows forms application that is supposed to execute on the client side (all client desktops are windows based with .net 4 framework installed). On the other hand, the ...
0
votes
0answers
43 views

Perl-MySQL database password input; GENE-counter

First time poster. I'm extremely new to Perl / MySQL / Linux (Ubuntu), so there is every chance that I'm doing something ridiculous. Any help would be greatly appreciated. If i'm asking in the wrong ...
-1
votes
0answers
36 views

How to migrate graylog2 to new server? [closed]

I need to change my graylog2 server to a new one with all data included. I've installed the new version, mongodb, elasticsearch and graylog2-web-interface. I also copied all elasticsearch_data to the ...
0
votes
0answers
23 views

Moved MySQL datadir to Secondary Drive, MySQL Won't Startup [closed]

Evening, I run Linux from a 100GB SSD, and because I have a lot of databases, I have moved the MySQL datadir to a different hard drive (/media/Data/Databases/). I mount the Data drive on startup ...
0
votes
1answer
38 views

MySQL 5.6 LOAD XML LOCAL INFILE and empty XML elements

I have a large number of reasonably sizable XML files that I'd like to import into a MySQL table. I'm running Centos 6.3 and MySQL 5.6, I had initially tried 5.5 but ran into issues and later found ...
0
votes
1answer
59 views

Copying raw mysql files to Windows 7 MySQL 5.6 obtained via mysqlhotcopy from Linux MySQL 5.1

Assuming I only have access to the raw files (.myd, .myi, .frm), would I simply copy+paste mysql db files obtained from "/var/lib/mysql/mydb" to "C:\Program Files\MySQL\MySQL Workbench CE ...
0
votes
2answers
43 views

Case on PHP SQL queries different from case on MySQL database. Cannot use lower_case_table_names = 1

I'm having an issue with a website I wrote in PHP on a WAMP server on Windows, issue is, it's now being deployed on a Linux server. The site is quite big and I've done all my queries this way in all ...
0
votes
0answers
40 views

MySQL update timestamp on LOAD DATA INFILE IGNORE

I have written a couple of scripts which load data from switches into my MySQL database. I have a table switch where I added a column "lastupdate". The table switch looks like this: create table ...
0
votes
1answer
40 views

redhat mysql failure

Linux xxxxxx 2.6.32-131.0.15.el6.x86_64 #1 SMP Tue May 10 15:42:40 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux '#'rpm -qa | grep mysql mysql-server-5.1.52-1.el6_0.1.x86_64 ...
0
votes
0answers
38 views

All SQL requests (Table name, columns) are uppercase

I'm currently working on a project somebody else worked on. The issue is, I'm currently working on Debian, and all the requests in the code are in uppercase (SELECT COL1, COL2 FROM TABLE), whileas the ...
0
votes
0answers
74 views

MySQL behind Wordpress on Ubuntu 12.04 LTS seems to crash periodically. Root receives mail about a failing cron job [closed]

Here's the mail root receives in /var/mail/root: >X-Cron-Env: <SHELL=/bin/sh> >X-Cron-Env: <PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin> >X-Cron-Env: ...

1 2 3 4 5 17