Skip to content

Commit 50a2a8b

Browse files
fluesvampcvicentiu
authored andcommitted
Update docs INSTALL BINARY to mention mariadb tar file instead
1 parent f2830af commit 50a2a8b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Docs/INSTALL-BINARY

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ also applies.
4141
shell> groupadd mysql
4242
shell> useradd -g mysql mysql
4343
shell> cd /usr/local
44-
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
45-
shell> ln -s full-path-to-mysql-VERSION-OS mysql
44+
shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf -
45+
shell> ln -s full-path-to-mariadb-VERSION-OS mysql
4646
shell> cd mysql
4747
shell> chown -R mysql .
4848
shell> chgrp -R mysql .
@@ -86,16 +86,16 @@ shell> cd /usr/local
8686

8787
4. Unpack the distribution, which creates the installation
8888
directory. Then create a symbolic link to that directory:
89-
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
90-
shell> ln -s full-path-to-mysql-VERSION-OS mysql
91-
The tar command creates a directory named mysql-VERSION-OS.
89+
shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf -
90+
shell> ln -s full-path-to-mariadb-VERSION-OS mysql
91+
The tar command creates a directory named mariadb-VERSION-OS.
9292
The ln command makes a symbolic link to that directory. This
9393
lets you refer more easily to the installation directory as
9494
/usr/local/mysql.
9595
With GNU tar, no separate invocation of gunzip is necessary.
9696
You can replace the first line with the following alternative
9797
command to uncompress and extract the distribution:
98-
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
98+
shell> tar zxvf /path/to/mariadb-VERSION-OS.tar.gz
9999

100100
5. Change location into the installation directory:
101101
shell> cd mysql

0 commit comments

Comments
 (0)