Tag - mysql - liczba wpisów 10

Usuwanie pierwszej linii z długiego pliki Kategoria: Linux | Tagi: mysqldump, mysql, tail | Autor: Bartłomiej Gałęzia

tail -n +2 source_file.txt > destination_file.txt

Przydatne przy odtwarzaniu bazy danych gdzie mysqldump dodaje na początku zabezpieczenie:

/*!999999\- enable the sandbox mode */

Źródło: https://stackoverflow.com/questions/339483/how-can-i-remove-the-first-line-of-a-text-file-using-bash-sed-script

Podczas importu bazy z pliku:

mysql -u root -ppassword -h localhost database < database.sql

Wyskoczył błąd:

ERROR 1153 (08S01) at line 2494: Got a packet bigger than 'max_allowed_packet' bytes

Rozwiązanie:

mysql --max_allowed_packet=100M -u root -ppassword -h localhost database < database.sql

Źródło: https://stackoverflow.com/questions/93128/mysql-error-1153-got-a-packet-bigger-than-max-allowed-packet-bytes

Zabbix install - MySQL ERROR 1118 (42000) Kategoria: Zabbix | Tagi: mariadb, mysql, zabbix | Autor: Bartłomiej Gałęzia

ERROR 1118 (42000) at line 1278: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.

W pliku:

/usr/share/doc/zabbix-server-mysql/create.sql.gz

trzeba dodać na początku:

SET SESSION innodb_strict_mode=OFF;

Mysql-server reset root password Kategoria: Linux | Tagi: mysql | Autor: Bartłomiej Gałęzia

sudo mysqld_safe --skip-grant-tables
sudo mysql --user=root mysql
update user set authentication_string=password('1111') where user='root';
flush privileges;

https://dba.stackexchange.com/questions/55116/mysql-login-after-secure-installation

https://stackoverflow.com/questions/30692812/mysql-user-db-does-not-have-password-columns-installing-mysql-on-osx

Proftpd + MySQL on Debian 10 Kategoria: Linux | Tagi: ftp, mysql, proftpd | Autor: Bartłomiej Gałęzia

1. Podstawowe paczki

apt-get install aptitude
aptitude update
aptitude install vim nmap mc screen unzip sudo
aptitude install apache2 mariadb-server php php-mbstring php-gd php-curl php-zip php-xml php-imagick php-cgi php-mysql php-pear php-gettext libapache2-mod-php php-common php-phpseclib
mysql_secure_installation
aptitude install proftpd proftpd-mod-mysql

Zobacz całość

W nowej wersji phpmyadmin nie ma możliwości logowania się przez konto root.

Aby to obejść należy stworzyć nowego użytkownika do bazy.

sudo mysql --user=root mysql
CREATE USER 'username'@'localhost' IDENTIFIED BY 'userpass';
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;

Adminer - one-file phpmyadmin Kategoria: PHP | Tagi: mysql, phpmyadmin | Autor: Bartłomiej Gałęzia

Mysql DUMP i Restore Kategoria: MySQL i inne bazy | Tagi: mysqldump, mysql | Autor: Bartłomiej Gałęzia

mysqldump -p --user=username database_name > zrzut_bazy.sql

mysql -u user -ppass -h localhost database_name < /home/www/zrzut_bazy.sql

Reset mysql root password Kategoria: MySQL i inne bazy | Tagi: mysql, pass, reset | Autor: Wojciech Gazda

http://www.rackspace.com/knowledge_center/article/mysql-resetting-a-lost-mysql-root-password

sudo /etc/init.d/mysql stop
sudo mysqld_safe --skip-grant-tables &
mysql -uroot
use mysql;
update user set password=PASSWORD("mynewpassword") where User='root';
flush privileges;
quit
sudo /etc/init.d/mysql stop && sudo /etc/init.d/mysql start
mysql -u root -p

Proftpd + MySQL Kategoria: Linux | Tagi: do poprawki, ftp, mysql, proftpd | Autor: Bartłomiej Gałęzia

== instalujemy serwer mysql i proftpd z mod_mysql

apt-get install mysql-server
apt-get install proftpd proftpd-mod-mysql

Zobacz całość

Wyszukaj

Zapisz się do newsletera