- perl-Text-Xslate-3.1.2-8.el6
- perl-Test-Simple-0.96-1.el6
- perl-Data-MessagePack-0.48-8.el6
- perl-XML-TreePP-XMLPath-0.72-8.el6
- perl-autobox-Core-1.27-8.el6
- perl-autobox-2.82-8.el6
Also, you will need EPEL repo for the dependencies, friend.
$ curl -6 "http://a00:1450:4007:805::1018/" FAIL!
curl: (3) IPv6 numerical address used in URL without brackets
$ curl -6 "http://[a00:1450:4007:805::1018]/"BINGO!
curl: (3) [globbing] bad range in column 13
$ curl -g -6 "http://[2a00:1450:4007:805::1018]/"
302 Moved
The document has moved
** (myloader:42526): CRITICAL **: cannot open file vcadminweb.message.sql.gz (24) * (myloader:46190): CRITICALIn my case, I needed to check and to change the open files:
ulimit -n 10000 ..... and solved!2) The second one looks like a problem accessing to the database.... but it is not. Message:
**: Error switching to database CMSB076 whilst restoring table multidevicevideo_playersIn my case, it was a timewait very low in the mysqld config.
wait_timeout = 300solved the issue for me.
mysql> drop database my-web;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-web' at line 1
mysql> drop database "my-web";
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"my-web"' at line 1
mysql> drop database 'my-web';The trick:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''my-web'' at line 1
mysql> drop database `my-web`;
Query OK, 83 rows affected, 1 warning (0,02 sec)
Add "umask 002" just before the "exec" line in $GLASSFISH_HOME/bin/asadmin
Change logging.properties file line to (by example):
com.sun.enterprise.server.logging.GFFileHandler.file=/var/log/glassfish/server.log