Software :: Start The Jboss And Return To The Command Console?
May 25, 2010
Normally one can start the Jboss with
Code:
./run.sh -c server-name
But in this way the command console will keep hang. Now I want to write a script which calls u this command and return back to the command console. Here is what I wrote but it doesn't return back to the command console:
Code:
#!/bin/sh
MSGBP_HOME="/opt/jboss/MSGBP"
case "$1" in
start)
[code]...
View 1 Replies
ADVERTISEMENT
Jun 28, 2010
How to start jboss portal in command mode???
View 1 Replies
View Related
May 14, 2011
I want to copy a file to all RHQ-Agents through out RHQ-Console.
View 1 Replies
View Related
Apr 14, 2009
I need to start a xen domain from console with xm command but the 'new' sub command is missing?
[root@sambie xen]# xm new CENTOS-5.3-PDC
Error: Sub Command new not found!
View 1 Replies
View Related
Jul 30, 2010
16:46:50,375 INFO [AbstractJBossASServerBase] Server Configuration:
JBOSS_HOME URL: file:/C:/jboss-6.0.0.20100721-M4/
Bootstrap: $JBOSS_HOMEserver/default/conf/bootstrap.xml
Common Base: $JBOSS_HOMEcommon/
[code]....
View 1 Replies
View Related
Jan 3, 2011
how to start or stop Jboss at boot time?
View 1 Replies
View Related
Sep 8, 2010
How can I start a program from tty1 console text mode to be executed in tty2 console text mode? Actualy I would like to start a program (chat client cli program) in tty8 automaticaly when linux PC boots.
View 6 Replies
View Related
Jul 1, 2010
I use ioctl to get the console window size (the SSH window). I use the following code:
struct winsize ws;
int returnValue = ioctl(pCommandStructure->terminal, TIOCGWINSZ, &ws);
int numberOfColumnsOfTerminalWindow = ws.ws_col;
When I debug on linux pc, it gives me the correct window width. But after I try it on router (this is my enventual place where my code shall run), ioctl always give me 0 width, that is, numberOfColumnsOfTerminalWindow == 0. but the returnValue is 0 which means that the function call succeeds.
View 2 Replies
View Related
Sep 9, 2009
I have one server with Jboss and Tomcat installed, I have to start these servers manually everytime I do reboot the server.How I could do to start Jboss and Tomcat automatically, when I do reboot the server?
View 1 Replies
View Related
Jul 1, 2010
I use ioctl to get the cosole window size (the SSH window).
I use the following code:
When I debug on linux pc, it gives me the correct window width. But after I try it on router (this is my enventual place where my code shall run), ioctl always give me 0 width, that is, numberOfColumnsOfTerminalWindow == 0. but the returnValue is 0 which means that the function call succeeds.
View 2 Replies
View Related
Nov 12, 2010
how to start and stop jboss server i had done but it is saying permission denied.
View 2 Replies
View Related
Jan 13, 2010
I'm trying to get a return value from the command running within screen. I have tried
Code:
screen "some_command ; echo $? > retval"
but this refuses to write "retval".
[code]....
View 1 Replies
View Related
Jan 11, 2010
I am testing the serial ports on a Single Board Computer(SBC) running Linux kernel 2.6.29. I usually do this by connecting the serial port to another PC serial port, then doing "cat /dev/ttyS0" on PC and "echo hello > /dev/ttyS0" on the SBC. However in the current system, "echo hello > /dev/ttyS0" command does not return at all! Also no characters appear on the destination port. I am running the echo command as root. The system boot messages show that the serial port in indeed /dev/ttyS0.
View 2 Replies
View Related
Nov 7, 2010
What is a Linux command that I can run to programmatically return either 32 or 64 to indicate whether the processor is a 32 bit or 64 bit processor?
View 4 Replies
View Related
Feb 19, 2010
I am writing a short script to do some backups.Here is a small section of it:
Code:
echo -n "Please enter your choice ..."
read CHOICE
[code]....
View 3 Replies
View Related
May 2, 2011
getting a error return code for useradd commandthe return code is 1cite or tell me the explanation of return code 1 .
View 1 Replies
View Related
Mar 31, 2011
I need to get a return code for the command ldapmodify.I try this and didn't workrc=ldapmodify -a -v -c -p $PORT -h $SRV -D cn=$USR,cn=Users,dc=company,dc=com -w $PWD -f $LDIFFILENAMECOUNTecho "return code " $rc what exactly the way to get the return code of that ?
View 2 Replies
View Related
Feb 18, 2011
How can I pass carriage return to a command. I am writing a shell script whcih generates ssh key pair. It ask for input from user three times. I want to pass carriage return (ie. press Enter button) to this command. Is tehre any way
View 8 Replies
View Related
Jul 21, 2010
I'm creating a usb device driver that needs to be able to read from two different endpoints. I couldn't see any way of having two read functions in the driver, so I got round this by reading from one of the endpoints with read, and the other with ioctl.However this hasn't worked, the ioctl call from c returns -1. I added a printk command in the driver in the ioctl function, however looking at kern.log I can see that this function is never being called. Does anyone have any ideas as to what the problem called be, or a better method of being able to read from two different endpoints?
View 2 Replies
View Related
Nov 25, 2010
Below is an example output of what I see when I run the 'ls' command on some directories in linux (this is from a tomcat/common/lib directory). However I'm not clear on why some of the filenames are appearing inside [square brackets]
-rw-r--r-- 1 root root 1038825 Aug 30 2006 [ant].jar
-rw-r--r-- 1 root root 566376 Apr 1 2008 [commons-collections].jar
-rw-r--r-- 1 root root 107392 Aug 18 2006 [commons-dbcp].jar
[code]...
View 2 Replies
View Related
Feb 18, 2011
How can I pass carriage return to a command in the shell script. I am writing a shell script whcih generates ssh key pair. It ask for input from user three times. I want to pass carriage return (i.e., press Enter button) to this command.
View 2 Replies
View Related
Jan 17, 2011
To put it simply I want the egrep command to return matches for a group rather than the whole pattern itself.For example:
Code:
egrep "reals([0-9]+?m[0-9]+?.[0-9]{3}s)" tmp
returns
"real 0m1.001s"
But I want it to return just "0m1.001s", the portion is the group. I can just apply egrep to whatever the first command returns but is there an easier way to do it?
View 4 Replies
View Related
May 18, 2011
How to manage the find command to return true or false if a file was found/or not? I tried to man find but didn't found anything.
View 12 Replies
View Related
Aug 12, 2010
Is there a command line option that will allow less to return to the command line if there are not sufficient lines in the file to warrant paging.
View 1 Replies
View Related
Feb 22, 2011
Yesterday i fell asleep while my laptop was still on. when i woke up this morning i stared at a black screen. I tried to wake it up but nothing happened so i just turned it off.
But when i turn it on again i get this after the login screen: Xsession: Warning" Unable to write to /tmp; X session may exist with an error
After a few minutes i get the message, that my temp directory id full.
Now the problem is, that i cannot even login in console mode! i tried the "console login" mode from the login window, i tried switching the console with ctrl+Alt+F1, i even tried to start in recovery mode. But all i get is a blank screen with a blinking cursor in the middle, but i can't write anything!
View 3 Replies
View Related
Sep 8, 2011
fedora logo animation splashscreen that appeared when the Live CD was booting? Now when I boot into my Fedora 15 I get an ugly verbose console-like output and am not interested in seeing what's happening behind the scenes!
View 3 Replies
View Related
May 1, 2010
I removed gdm and kdm and my laptop started in console mode.Now I would like to get same thing - I made upgrade to ubuntu 10.4 and it starts again in graphics mode. I removed from grub menu.lst splash and quit, removed gdm and kdm - and again I receive graphics prompt.PS I removed also failsafe-x.
View 6 Replies
View Related
May 18, 2010
I have a very strange trouble with gnome/X11/Adapter/memory, I really don't know! When I upgrade my memory to 2Gb (1Gb+1Gb), graphic mode not starting! Load only console, but gnome not load. And besides error message not showing. 'starx' command leads to black screen and nothing happends, keyboard doesn't work too. if I leave 1Gb memory, all working perfectly! tell me where I can find log-message or how I can solve that problem. In /var/log I can't found anything interesting.
View 1 Replies
View Related
Aug 27, 2010
for my small home server i want the machine to NOT start x11 automatically but to enable remote logins via xdmcp.The problem: xdmcp is controlled by gdm. If i disable gdm to have no x11-login-screen xdmcp does not run...Is there any way to start gdm without starting x11 on the console?
View 2 Replies
View Related
Aug 14, 2010
I would like to achieve to get this logo at start, exactly like this: [URL] It is normally something, but maybe there is a package for that ?
View 8 Replies
View Related