Linux: Install Apache with Yum
August 16th, 2010 by jeremychone | No Comments »yum install httpd yum install mod_ssl
yum install httpd yum install mod_ssl
yum install mysql yum install mysql-server
service mysqld start
mysqladmin -u root password MYPASSWORD
mysqladmin -u root -p'oldpassword' password newpass
Command-Shift-3: Desktop screenshot, png on desktop.
Command-Shift-Control-3: Desktop screenshot, png on clipboard.
Command-Shift-4: Area screenshot, png on desktop.
Command-Shift-Control-4: Area screenshot, png on clipboard.
Command-Shift-[Control]-4 + Space: Window screenshot, png on desktop.
For more control use Grab in Utilities
In the Web.xml
<web-app>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
...
</web-app>
<delete> <fileset dir="WEB-INF/lib" includes="**/some*.jar" excludes="**/some-other*.jar" /> </delete>
<copy todir="../new/dir">
<fileset dir="src_dir"/>
</copy>
<copy todir="../dest/dir">
<fileset dir="src_dir">
<exclude name="**/*.java"/>
</fileset>
</copy>
<copy todir="../dest/dir">
<fileset dir="src_dir" excludes="**/*.java"/>
</copy>