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-PLUGINS(1)						 RabbitMQ Service					       RABBITMQ-PLUGINS(1)

NAME
rabbitmq-plugins - command line tool for managing RabbitMQ broker plugins SYNOPSIS
rabbitmq-plugins {command} [command options...] DESCRIPTION
rabbitmq-plugins is a command line tool for managing RabbitMQ broker plugins. It allows one to enable, disable and browse plugins. It must be run by a user with write permissions to the RabbitMQ configuration directory. Some plugins depend on others to work correctly. rabbitmq-plugins traverses these dependencies and enables all required plugins. Plugins listed on the rabbitmq-plugins command line are marked as explicitly enabled; dependent plugins are marked as implicitly enabled. Implicitly enabled plugins are automatically disabled again when they are no longer required. COMMANDS
list [-v] [-m] [-E] [-e] [pattern] -v Show all plugin details (verbose). -m Show only plugin names (minimal). -E Show only explicitly enabled plugins. -e Show only explicitly or implicitly enabled plugins. pattern Pattern to filter the plugin names by. Lists available plugins, their versions, dependencies and descriptions. Each plugin is prefixed with a status indicator - [ ] to indicate that the plugin is not enabled, [E] to indicate that it is explicitly enabled, and [e] to indicate that it is implicitly enabled. If the optional pattern is given, only plugins whose name matches pattern are shown. enable {plugin ...} plugin One or more plugins to enable. Enables the specified plugins and all their dependencies. disable {plugin ...} plugin One or more plugins to disable. Disables the specified plugins and all plugins that depend on them. EXAMPLES
rabbitmq-plugins list This command lists all the plugins available, on one line each. rabbitmq-plugins list -v This command lists all the plugins available. rabbitmq-plugins list -v management This command lists all the plugins available, but does not display plugins whose name does not contain "management". rabbitmq-plugins list -e rabbit This command lists all implicitly or explicitly enabled RabbitMQ plugins. rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management This command enables the shovel and management plugins and all their dependencies. rabbitmq-plugins disable amqp_client This command disables amqp_client and all plugins that depend on it. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> RabbitMQ Server 06/22/2012 RABBITMQ-PLUGINS(1)