Error when running starting server service


 
Thread Tools Search this Thread
Operating Systems Solaris Error when running starting server service
# 8  
Old 11-16-2017
sorry:

line 22:

Code:
 18
     19 set -e
     20
     21 # Get default settings with user overrides for (RABBITMQ_)<var_name>
     22 # Non-empty defaults should be set in rabbitmq-env
     23 . `dirname $0`/rabbitmq-env
     24
     25 RABBITMQ_START_RABBIT=
     26 [ "x" = "x$RABBITMQ_ALLOW_INPUT" ] && RABBITMQ_START_RABBIT=" -noinput"
     27 [ "x" = "x$RABBITMQ_NODE_ONLY" ] && RABBITMQ_START_RABBIT="$RABBITMQ_START_RABBIT -s $RABBITMQ_BOOT_MODULE boot "
     28



line 49:

Code:
 46                if ! mkdir -p "$RABBITMQ_PID_DIR"; then
     47                    # Better diagnostics - 'mkdir -p' reports only the first directory in chain that
     48                    # it fails to create
     49                    echo "Failed to create directory: $RABBITMQ_PID_DIR"
     50                    exit $EX_CANTCREAT
     51                fi

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

A service is not starting after booting up.

I require a service named "X" to be started automatically every time we restart the Linux 6.2 machine.But it is not starting. I have included the service in Init.d folder by $chkconfig --add X.But the application is not starting automatically after every reboot.I need to invoke $service X start... (1 Reply)
Discussion started by: Anjan Ganguly
1 Replies

2. Red Hat

Httpd service not starting... Error "Documentroot must be a directory"

I am working with CentOS 6.5. Indeed the document root /var/www/html is a directory and it is a mount point of one file system (not NFS) I observed, if I unmount that file system, I could able to start httpd. Is it restricted in CentOS 6.X that the Documentroot can not be a mount point? ... (5 Replies)
Discussion started by: atanubanerji
5 Replies

3. Solaris

Rpcbind service not starting

Hello all, I have read just about every rpcbind not starting thread and article on the internet it seems, but I have not found a solution to my problem as of yet. I have a solaris 10 server that has been running with no problems for a while. The other day it crashed and would not boot to the gui... (2 Replies)
Discussion started by: Madrox72
2 Replies

4. UNIX for Advanced & Expert Users

error starting named service in CentOS

Hi Guys, I am configuring DNS BIND server I am getting following error, can someone please help ...below is my complete /etc/named.caching-nameserver.conf file :- # service named restart Stopping named: Starting named: Error in named... (1 Reply)
Discussion started by: patibandlavinay
1 Replies

5. Solaris

Service error on sparc server running solaris 10

Hi, I am getting following service error on one of the sparc servers running solaris 10 - Code : $ svcs -a | grep "maintenance" maintenance Nov_08 svc:/application/management/sma:default $ svcs -xv svc:/application/management/sma:default (net-snmp SNMP daemon) State: maintenance... (8 Replies)
Discussion started by: sunadmin
8 Replies

6. Solaris

Service not starting Solaris10

On one of our server inetd service has stuck in transition state , tried restarting it but it does not do any thing and there is no associated inetd process for the same , how can i start it .. w/o rebooting it svcs inetd STATE STIME FMRI online* 16:44:55... (3 Replies)
Discussion started by: fugitive
3 Replies

7. UNIX for Dummies Questions & Answers

Starting a service at startup.

Hi guys I want to start a service and a script SiteMonitor.sh at startup. To start with i have modified /etc/rc.local file. Here is the content of my /etc/rc.local file. #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own... (3 Replies)
Discussion started by: pinga123
3 Replies

8. Solaris

set-tmp-permission service is not running in Netra CCMP3060 blade server

In my Solaris 10 - Netra CP3060, the following particular script is not running: lrc:/etc/rc2_d/S00set-tmp-permissions lrc:/etc/rc2_d/S07set-tmp-permissions Above script is to set the default permission of /tmp & /var/tmp while rebooting if it found any inconsistencies. I changed the file... (4 Replies)
Discussion started by: ramnagaraj
4 Replies

9. AIX

Service starting Problem

Dear All, When i am start the service netd i am facing the problem 0513-015 The inetd Subsystem could not be started Please check subsystem resources and try again later. please suggest me. It is urgent (1 Reply)
Discussion started by: pernasivam
1 Replies

10. Linux

Requiste for starting service xinetd

hi... i am trying to find out the services which should be started before the service xinetd can be started. I have read thru the /etc/rc.d/init.d script and i think xinetd depends on service network as it checks whether the variable NETWORKING is set or not || exit 0 Does it... (0 Replies)
Discussion started by: tuxfood
0 Replies
Login or Register to Ask a Question
RABBITMQ-SERVER(1)						  RabbitMQ Server						RABBITMQ-SERVER(1)

NAME
rabbitmq-server - start RabbitMQ AMQP server SYNOPSIS
rabbitmq-server [-detached] DESCRIPTION
RabbitMQ is an implementation of AMQP, the emerging standard for high performance enterprise messaging. The RabbitMQ server is a robust and scalable implementation of an AMQP broker. Running rabbitmq-server in the foreground displays a banner message, and reports on progress in the startup sequence, concluding with the message "broker running", indicating that the RabbitMQ broker has been started successfully. To shut down the server, just terminate the process or use rabbitmqctl(1). ENVIRONMENT
RABBITMQ_MNESIA_BASE Defaults to /var/lib/rabbitmq/mnesia. Set this to the directory where Mnesia database files should be placed. RABBITMQ_LOG_BASE Defaults to /var/log/rabbitmq. Log files generated by the server will be placed in this directory. RABBITMQ_NODENAME Defaults to rabbit. This can be useful if you want to run more than one node per machine - RABBITMQ_NODENAME should be unique per erlang-node-and-machine combination. See the clustering on a single machine guide[1] for details. RABBITMQ_NODE_IP_ADDRESS By default RabbitMQ will bind to all interfaces, on IPv4 and IPv6 if available. Set this if you only want to bind to one network interface or address family. RABBITMQ_NODE_PORT Defaults to 5672. OPTIONS
-detached start the server process in the background SEE ALSO
rabbitmq-env.conf(5) rabbitmqctl(1) EXAMPLES
rabbitmq-server -detached Runs RabbitMQ AMQP server in the background. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> NOTES
1. clustering on a single machine guide http://www.rabbitmq.com/clustering.html#single-machine RabbitMQ Server 06/22/2012 RABBITMQ-SERVER(1)