./build mysql not working

dverkade

New member
Joined
Jan 26, 2017
Messages
2
Hi,

I'm trying to build mysql with custombuild, bot the files it's trying to download are completely empty. Anybody having the same issue to have a solution to help and resolve this?

[root@app07 custombuild]# ./build mysql
Downloading mysql/centos7-64.txt...
--2019-02-23 14:56:06-- http://files6.directadmin.com/services/custombuild/all/mariadb/10.2/10.2.22/centos7-64.txt
Resolving files6.directadmin.com (files6.directadmin.com)... 62.148.174.106, 2001:16e8:1:c:62:148:174:106
Connecting to files6.directadmin.com (files6.directadmin.com)|62.148.174.106|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 0 [text/plain]
Saving to: ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’

[ <=> ] 0 --.-K/s in 0s

2019-02-23 14:56:06 (0.00 B/s) - ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’ saved [0/0]

Downloaded file /usr/local/directadmin/custombuild/mysql/centos7-64.txt does not exist or is empty after download
cwd is: /usr/local/directadmin/custombuild
Fileserver might be down, using the backup file server..
--2019-02-23 14:56:06-- http://69.162.69.58/services/custombuild/all/mariadb/10.2/10.2.22/centos7-64.txt
Connecting to 69.162.69.58:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 0 [text/plain]
Saving to: ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’

[ <=> ] 0 --.-K/s in 0s

2019-02-23 14:56:06 (0.00 B/s) - ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’ saved [0/0]

Downloading mysql/centos7-64.txt...
--2019-02-23 14:56:06-- http://files6.directadmin.com/services/custombuild/all/mariadb/10.2/10.2.22/centos7-64.txt
Resolving files6.directadmin.com (files6.directadmin.com)... 62.148.174.106, 2001:16e8:1:c:62:148:174:106
Connecting to files6.directadmin.com (files6.directadmin.com)|62.148.174.106|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 0 [text/plain]
Saving to: ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’

[ <=> ] 0 --.-K/s in 0s

2019-02-23 14:56:06 (0.00 B/s) - ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’ saved [0/0]

Downloaded file /usr/local/directadmin/custombuild/mysql/centos7-64.txt does not exist or is empty after download
cwd is: /usr/local/directadmin/custombuild
Fileserver might be down, using the backup file server..
--2019-02-23 14:56:06-- http://69.162.69.58/services/custombuild/all/mariadb/10.2/10.2.22/centos7-64.txt
Connecting to 69.162.69.58:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 0 [text/plain]
Saving to: ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’

[ <=> ] 0 --.-K/s in 0s

2019-02-23 14:56:06 (0.00 B/s) - ‘/usr/local/directadmin/custombuild/mysql/centos7-64.txt’ saved [0/0]

./build: line 8789: [: too many arguments
./build: line 8794: [: too many arguments
./build: line 8797: [: too many arguments
./build: line 8800: [: too many arguments
./build: line 8803: [: too many arguments
./build: line 8824: [: too many arguments
./build: line 8827: [: too many arguments
*** Cannot find /usr/local/directadmin/custombuild/mysql/mysql/centos7-64.txt. Aborting ***
 
Try another server. Could be this one is having issues at the moment.

Open options.conf and change files6.directadmin.com to for example files1.directadmin.com and run ../build update and ./build mysql afterwards.

Or do it like this.
./build set_fastest
./build update
./build mysql

Good chance things will work, unless the set_fastest chooses files6 again. In that case you can change it manually as described in the lines above.
 
It's an issue with all mirrors. The centos7-64.txt file is empty for MariaDB 10.2.x and 10.3.x.

I opened a ticket so hopefully this gets fixed asap.
 
Yep, just had a look, you're correct.
Not only the 7-64 but all 3 .txt files are completely empty.

Code:
[TXT]	centos6-32.txt	22-Feb-2019 18:07 	0 	 
[TXT]	centos6-64.txt	22-Feb-2019 18:07 	0 	 
[TXT]	centos7-64.txt	22-Feb-2019 18:07 	0

Hope they fix it soon.
 
I did not see this thread before sending a private message to Smtalk to notify him of the problem, sorry Smtalk.


Until they solve the problem, for now we can edit the file, put the expected content, modify the file attributes with "chattr +i mysql/centos7-64.txt" and re-run the update of MariaDB with custombuild.

/usr/local/directadmin/custombuild/mysql/centos7-64.txt
Code:
MariaDB-10.2.22-centos73-x86_64-server.rpm
MariaDB-10.2.22-centos73-x86_64-client.rpm
MariaDB-10.2.22-centos73-x86_64-devel.rpm
MariaDB-10.2.22-centos73-x86_64-shared.rpm
MariaDB-10.2.22-centos73-x86_64-common.rpm
MariaDB-10.2.22-centos73-x86_64-compat.rpm
MariaDB-10.2.22-centos73-x86_64-backup.rpm

Do not forget to restore the file attributes with "chattr -i mysql/centos7-64.txt".

Greetings.
 
Back
Top