Thanks to antville.org
Suitable date format

The mysql general logs use the following date format to display current date.

date '+%y%m%d %H:%M:%S'

The same can be used in the shell script to echo date at the beginning of the line.

... Link (0 comments) ... Comment


Adding user to mysql group

If you want someone to access all the files and locations that mysql has access to, then add the username to the mysql group.

vi /etc/group

mysql:x:27:santosh

... Link (0 comments) ... Comment


Disable foreign key checks

init_connect can be used to disable foreign key checks.
mysql> SET GLOBAL init_connect='SET foreign_key_checks = 0';

As well something similar for the GLOBAL options my.cnf file.
init_connect='SET foreign_key_checks = 0';

The super user will bypass the init-connect directives. So the user without the super privilege can take benefit of this setting.

... Link (0 comments) ... Comment


MySQL error codes

Here is the list error codes mysql will return when it fails to connect to the mysql instance.

101 error: Can not connect to MySQL server (101)
102 error: '(proxy) all backends are down'
103 error: 'Access denied for user 'user'@'10.10.10.10' (using password: NO)'
104 error: 'Access denied for user 'user'@'10.10.10.10' (using password: YES)'
105 error: 'Host '10.10.10.10' is not allowed to connect to this MySQL server'
111 error: 'Lost connection to MySQL server at 'reading initial communication packet', system error: 111'
113 error: 'Lost connection to MySQL server at 'reading initial communication packet', system error: 113'
114 error: Unknown MySQL server host (3)

... Link (0 comments) ... Comment


chmod permissions to remember

660 mysql data dir
700 home directory
777 world writeable files
chmod +x asper.sh OR (chmod 754 asper.sh)

... Link (0 comments) ... Comment


MySQL Connection Timeouts

Default value of kernel net.ipv4.tcp_max_syn_backlog is 2048, increase it to 8192. Default value of net.core.somaxconn kernel setting is 128 and can be increased to 1000
MySQL parameter back_log which has default value of just 50. You may want to set it to 1000 or even higher.

... Link (0 comments) ... Comment


Innodb_fast_shutdown

If innodb_fast_shutdown is set to 0, the log files are purged when mysqld shuts down - larger files mean a longer shutdown time. The default for innodb_fast_shutdown is 1, which
means that the log files are not purged before a shutdown. A value is 2 simulates a crash, and at the next startup InnoDB will do a crash recovery.
This can be useful when testing to see approximately how long InnoDB takes to recover from a crash, to determine if the size of your log files is too large.

... Link (0 comments) ... Comment


Trigger to change blank to NULL

You can create a trigger to insert NULL values whenever a blank is found.

create trigger test1
before insert
on hvi
for each row
begin
if new.`Amt` = ' ' then
set new.`Amt` = null;
end if;
end;

... Link (0 comments) ... Comment


Installing php mysql extension

yum install php-mysql

Is this ok [y/N]: y
Downloading Packages:
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID 37017186

Public key for php-pdo-5.1.6-27.el5.x86_64.rpm is not installed
_____

Enable the RHEL network connection and disable GPG check.

vi /etc/yum.repos.d/rhel.repo
[base]
name=RHEL 5 $releasever - $basearch - Base
baseurl=http://10.10.10.1/yum/rhel/5/base/
enabled=1
gpgcheck=0

... Link (0 comments) ... Comment


Error starting mysql

# /etc/init.d/mysqld start

Initializing MySQL database: Neither host 'localhost' nor 'localhost' could be looked up with /usr/bin/resolveip
Please configure the 'hostname' command to return a correct hostname.
[FAILED]

When you see such error message, you have to add hostname in /etc/hosts

... Link (0 comments) ... Comment


Online for 7923 days
Last modified: 4/24/24, 9:33 AM
Status
Youre not logged in ... Login
Menu
... Home
... Tags

Search
Calendar
May 2024
SunMonTueWedThuFriSat
1234
567891011
12131415161718
19202122232425
262728293031
April
Recent updates
discretize continuous features You can
"discretize" or "bin" continuous features into categorical features. from sklearn.preprocessing...
by shantanuo (4/24/24, 9:33 AM)
User Defined Property You
can create User Defined Property in libreoffice writer. File – Properties...
by shantanuo (1/9/23, 8:52 AM)
Arranging Chapters in the Navigator
To use a custom paragraph style for a heading, choose...
by shantanuo (1/4/23, 8:26 AM)
Use focus mode using Android
phones Settings > Digital Wellbeing and parental controls. Tap your...
by shantanuo (1/1/23, 3:59 AM)
Embed Fonts in document If
you use a font that the recipient is unlike to...
by shantanuo (12/18/22, 10:07 AM)
Using Navigator in Writer To
open the Navigator, select View > Navigator, or press the...
by shantanuo (12/18/22, 10:06 AM)
More about hyphenation The settings
for Tools > Options > Language Settings > Writing Aids...
by shantanuo (12/18/22, 10:04 AM)
link or unlink template If
you are using Libre office then template changer extension is...
by shantanuo (12/16/22, 5:27 AM)
Finding Styles you can select
Edit > Find and Replace > Other Options > Paragraph...
by shantanuo (12/14/22, 7:17 AM)
regex in clac In LibreOffice
Calc, you can use function REGEX for e.g. Begins with...
by shantanuo (12/14/22, 4:40 AM)
Libre Calc tips Turn Off
Grid Lines If you want to turn off grid lines...
by shantanuo (12/13/22, 8:14 AM)
More about Styles You can
goto View - Styles and change "All Styles" to "Applied...
by shantanuo (12/13/22, 7:49 AM)
Page Break Before Every Chapter
If your chapter titles are using the "Heading 2" Style:...
by shantanuo (12/13/22, 6:36 AM)
View and print in different
color Displaying Color in LO but Printing as White Page...
by shantanuo (12/13/22, 6:26 AM)
Change Normal Template in Libreoffice
Writer 1) Open a new file and set your font;...
by shantanuo (12/12/22, 8:45 AM)
Short english words in Devanagari
The list of short english words written in Devanagari. #...
by shantanuo (10/5/22, 9:05 AM)
Card issuing banks CITI
Standard Chartered HSBC American Express HDFC ICICI AXIS INDUS IND Kotak...
by shantanuo (7/16/22, 4:46 AM)
Activate IAM Access To activate
the Activate IAM Access setting, you must log in to...
by shantanuo (7/12/22, 5:52 AM)
use cheat instead of man
wget https://github.com/cheat/cheat/releases/download/4.2.3/cheat-linux-arm64.gz gunzip cheat-linux-arm64.gz chmod 770 cheat-linux-arm64 ./cheat-linux-arm64 mv cheat-linux-arm64...
by shantanuo (7/4/22, 8:53 AM)
python module itertools list of
useful methods of itertools module. permutations combinations combinations_with_replacement zip_longest count...
by shantanuo (9/8/21, 7:50 AM)
wikipedia tools 1) Collection of
useful utilities https://wikipediatools.appspot.com/ 2) all history of a user https://xtools.wmflabs.org/ec/mr.wikisource.org/Shantanuo...
by shantanuo (8/20/21, 6:36 AM)
Duration/Term of Copyright In the
case of original literary, dramatic, musical and artistic works, the...
by shantanuo (8/20/21, 6:26 AM)
Preserve seeds 6 types of
seeds to be preserved for next season. 1) laal Mula...
by shantanuo (5/7/21, 5:46 AM)
Why do I care for
Linux? I don't care that much for other software. Linux...
by shantanuo (12/17/20, 9:27 AM)
important leafy vegetables 1. Amaranthus
caudatus: rajgira. 2. Amaranthus tricolor: Math.  (Chhoti Chulai- Hindi, Cheera-...
by shantanuo (4/12/20, 2:01 PM)

RSS feed

Made with Antville
Helma Object Publisher