Starts from restart the machine: reboot /sbin/shutdown -r now ####check process: ps aux| less ps aux| grep xxx ####backup tar -cpzf $DESDIR/$FILENAME $SRCDIR...
Oracle ucm part of oracle fusion middleware. Recently, Oracle renamed it as Oracle Webcenter content. Oracle SOA contains Oracle BPM and Oracle BPEL, these two products are basically the same things,...
Reading this book for a project. Learning from ground instead just googling around. Therefore, knowledge will be gained even after the project ending....
#####Save as in VIM, there are two ways – ( Assumed that I’m editing a.txt. ) **:w b.txt** will write a.txt’s content to the file b.txt while keeping a.txt as the opened buffer in vim. **:sav b.txt** will first write a.txt’s...
For Apache HTTP server, this can be done by turning on the URL rewriting engine and specifying some rewriting rules. Create .htaccess file and located it under project folder in webroot. RewriteEngine on \# if a directory or a file exists,...
Problem: Folder archive and replicated to target server are out of sequence Solution 1: Update the timestamp of collections record, this will trigger a new round of archiving. Solution 2: 1. Go to content server -> Admin Applet -> Archiver; 2....
__str.matches(“\\\d+”);__ d+ –> one or more digits It allows starting with 0, eg. 0000124 __str.matches(“^[1-9]\\\d+”);__ It doesn’t allow starting with 0...