PROCESS privilege is new as of MySQL 5.7.31 and MySQL 8.0.21 and is also needed if you don't use --no-tablespaces .
privilege needed for mysqldump backup user:
SELECT privilege for dumped tables
SHOW VIEW for dumped views
TRIGGER for dumped triggers
LOCK TABLES if you don’t use the --single ...
Search found 212 matches
- Sun May 16, 2021 8:39 am
- Forum: MySQL
- Topic: Grant rights to a backup user.
- Replies: 2
- Views: 83856
- Sun May 16, 2021 8:15 am
- Forum: Shell
- Topic: replace newline in text file
- Replies: 1
- Views: 44466
Re: replace newline in text file
You can use sed
replace it with FOO:
or just remove it:
replace it with FOO:
Code: Select all
sed '{:q;N;s/\n/FOO/g;t q}' /path/text.txt
Code: Select all
sed '{:q;N;s/\n//g;t q}' /path/text.txt
- Sat May 08, 2021 8:41 am
- Forum: General
- Topic: Solved: Facebook not showing good picture for website
- Replies: 1
- Views: 44030
Re: Facebook not showing good picture for website
Facebook uses Open Graph protocol to create a "template" of the web-page.
If it can find it, it will try to create it's own.
Normally it pretty good, but sometimes it goes really wrong.
The good news is, Facebook engineers provided a great tool that can help you:
https://developers.facebook.com ...
If it can find it, it will try to create it's own.
Normally it pretty good, but sometimes it goes really wrong.
The good news is, Facebook engineers provided a great tool that can help you:
https://developers.facebook.com ...
- Sat Apr 17, 2021 4:18 pm
- Forum: Postfix
- Topic: Signed mail certificate
- Replies: 2
- Views: 60300
Re: Signed mail certificate
A good site to test your (mail)-ssl is
https://www.checktls.com/index.html
https://www.checktls.com/index.html
- Sat Apr 17, 2021 12:14 pm
- Forum: Postfix
- Topic: Signed mail certificate
- Replies: 2
- Views: 60300
Re: Signed mail certificate
you first need to generate csr-file (and key).
openssl req -new -nodes -keyout mail.server.com.key -out mail.server.com.csr
Make sure you use the same host-name as used in your postfix config file (of dovecot or other mail server)
in this example mail.server.com , not just the domain.
Then send ...
openssl req -new -nodes -keyout mail.server.com.key -out mail.server.com.csr
Make sure you use the same host-name as used in your postfix config file (of dovecot or other mail server)
in this example mail.server.com , not just the domain.
Then send ...
- Sun Mar 14, 2021 8:53 pm
- Forum: Servers
- Topic: postsuper: fatal: scan_dir_push: open directory defer: Permission denied
- Replies: 3
- Views: 72389
Re: postsuper: fatal: scan_dir_push: open directory defer: Permission denied
If it can't write the mails, it can't process the mail to send them.
an extreme solution is to delete the dir
and do a reinstall
it will recreate the dir with the correct file-settings.
an extreme solution is to delete the dir
Code: Select all
rm -fr /var/spool/postfix
Code: Select all
apt-get reinstall postfix
- Sun Mar 14, 2021 8:25 pm
- Forum: Servers
- Topic: postsuper: fatal: scan_dir_push: open directory defer: Permission denied
- Replies: 3
- Views: 72389
Re: postsuper: fatal: scan_dir_push: open directory defer: Permission denied
It looks like postfix does not have access to one or more directories.
Somehow the rights must have been changed.
You can try:
or
Somehow the rights must have been changed.
You can try:
Code: Select all
chown -R postfix /var/spool/postfix
Code: Select all
postfix set-permissions
- Fri Feb 12, 2021 7:10 pm
- Forum: General
- Topic: linux repeat command x times
- Replies: 1
- Views: 41734
Re: linux repeat command x times
With the up arrow you get the last commands you typed, and press enter to execute it.
If you want to run the same command several times,
you can use for-loop ( in bash)
for n in {1..3}; do <COMMAND>; done
repeats 3 times
Another option is watch
If you want to repeat a command every x seconds ...
If you want to run the same command several times,
you can use for-loop ( in bash)
for n in {1..3}; do <COMMAND>; done
repeats 3 times
Another option is watch
If you want to repeat a command every x seconds ...
- Sun Feb 07, 2021 7:48 am
- Forum: SQL
- Topic: mysql update add to text
- Replies: 1
- Views: 42434
Re: mysql update add to text
you can use concat to add to already existing string (varchar,text,...)
It doesn't work if the value is NULL,
It works with an empty string ('').
So you should replace all NULL values with empty string before.
Code: Select all
UPDATE table_name SET text_field=CONCAT(text_field,'string to add') WHERE id='1';
It works with an empty string ('').
So you should replace all NULL values with empty string before.
- Wed Sep 23, 2020 4:01 pm
- Forum: Shell
- Topic: switch in bash
- Replies: 1
- Views: 46380
Re: switch in bash
Yes, it look lik this:
in this case $VALUE can be 1 or 2,
anything else will result in default.
I think it is a string compare, so you can use anything.
Code: Select all
#Set the IP
case $VALUE in
1)
IP=192.168.1.160
NAME='a';
;;
2)
IP=192.168.1.161
NAME='B';
;;
*)
IP=192.168.1.1
NAME='Default';
;;
esac
anything else will result in default.
I think it is a string compare, so you can use anything.