install ant centos
To install Apache Ant on Cent-OS follow these steps: # yum install ant # yum install xml-commons-apis You should see something like this: # ant -version Apache Ant version 1.6.5 compiled on January 6 2007 Here is a good tutorial…
To install Apache Ant on Cent-OS follow these steps: # yum install ant # yum install xml-commons-apis You should see something like this: # ant -version Apache Ant version 1.6.5 compiled on January 6 2007 Here is a good tutorial…
There are two config directives that controls Apache version. The ServerSignature directive adds a line containing the Apache HTTP Server server version and the ServerName to any server-generated documents, such as error messages sent back to clients. ServerSignature is set…
to move mysql on freebsd without using a dump file follow these steps: stop mysql copy /var/db/mysql to its new location chown -R mysql:mysql modify and add line mysql_dbdir=”“ modify and change mysql_dbdir=”/var/db/mysql” to the new location of…
How can you rename a mysql Schema? easy! Create the new schema In this example the new schema is called my_new_schema mysqladmin -u root -p create my_new_schema Dump the old schema and pipe in to new schema mysqldump -u root…