TechPaste.Com DevOps Simplified...

Linux

Samba configuration in linux step by step

Step by step installation and configuration SAMBA include as followed rpm packages. samba-* samba-common-* samba-client-* samba-winbind-clients Download Samba package and...

Linux

Samba problems linux

Where can I learn to configure samba? Information about samba can be got at http://www.samba.org/. How to Start samba automatically...

Shell Scripting

Bash alias example | Linux

We will create a command of our own using the alias command. But before we start, we need to reveal...

Shell Scripting

ls command options | Linux

ls is probably the most used command and for good reason. With it, we can see directory contents and determine...

Oracle Weblogic Server

WLST script to create jms queue topic

  readDomain(‘/opt/bea/wls10/user_projects/domains/my_domain’) #setOption(‘ReplaceDuplicates’,’true’) #setOption(‘OverwriteDomain’,’true’) #delete(‘myJMSServer’,’JMSServer’) #delete(‘myJMSServer1′,’JMSServer’) #delete(‘myJMSServer2′,’Server’)   # Create a JMS Server. #======================================================================================= cd(‘/’) create(‘myJMSServer’, ‘JMSServer’) create(‘myJMSServer1′,’JMSServer’) create(‘myJMSServer2′,’JMSServer’) #=======================================================================================...