summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2022-08-10 12:24:31 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2022-08-10 12:24:31 +0200
commit1ac0bce36e5bf2136cedb1ce1da949f53cce4404 (patch)
tree7b81481b201c4e64aaa4a70411d992e0fac2289d /Docs
parent3b071bad1981a12e76769cbfc31b62fbd7362372 (diff)
parent65e8506ca9d03967191b6ed207cf107d311f7f99 (diff)
downloadmariadb-git-1ac0bce36e5bf2136cedb1ce1da949f53cce4404.tar.gz
Merge branch '10.4' into 10.5mariadb-10.5.17
Diffstat (limited to 'Docs')
-rw-r--r--Docs/INSTALL-BINARY12
1 files changed, 6 insertions, 6 deletions
diff --git a/Docs/INSTALL-BINARY b/Docs/INSTALL-BINARY
index b9153f7cb67..081f4dc9691 100644
--- a/Docs/INSTALL-BINARY
+++ b/Docs/INSTALL-BINARY
@@ -44,8 +44,8 @@ However most documentation at www.mysql.com also applies.
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> cd /usr/local
-shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
-shell> ln -s full-path-to-mysql-VERSION-OS mysql
+shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf -
+shell> ln -s full-path-to-mariadb-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
@@ -88,16 +88,16 @@ shell> cd /usr/local
4. Unpack the distribution, which creates the installation
directory. Then create a symbolic link to that directory:
-shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
-shell> ln -s full-path-to-mysql-VERSION-OS mysql
- The tar command creates a directory named mysql-VERSION-OS.
+shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf -
+shell> ln -s full-path-to-mariadb-VERSION-OS mysql
+ The tar command creates a directory named mariadb-VERSION-OS.
The ln command makes a symbolic link to that directory. This
lets you refer more easily to the installation directory as
/usr/local/mysql.
With GNU tar, no separate invocation of gunzip is necessary.
You can replace the first line with the following alternative
command to uncompress and extract the distribution:
-shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
+shell> tar zxvf /path/to/mariadb-VERSION-OS.tar.gz
5. Change location into the installation directory:
shell> cd mysql