<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94583#M7880</link>
    <description>&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;Stop ambari-server&lt;/P&gt;&lt;PRE&gt;DELETE FROM hostcomponentstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM hostcomponentdesiredstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM servicecomponentdesiredstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM servicedesiredstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM clusterservices WHERE service_name IN ('ZEPPELIN');
&lt;/PRE&gt;&lt;P&gt;Start ambari-server&lt;/P&gt;</description>
    <pubDate>Thu, 22 Oct 2015 04:13:58 GMT</pubDate>
    <dc:creator>afernandez</dc:creator>
    <dc:date>2015-10-22T04:13:58Z</dc:date>
    <item>
      <title>On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94582#M7879</link>
      <description>&lt;P&gt;While developing &lt;A href="https://github.com/hortonworks-gallery/ambari-zeppelin-service"&gt;Zeppelin Ambari service&lt;/A&gt;, I was going through the cycle of updating the code, restarting ambari, installing service. Then once the install failed (e.g. due to error in my code), I would &lt;A href="https://github.com/hortonworks-gallery/ambari-zeppelin-service#remove-zeppelin-service"&gt;delete the failed install via REST api&lt;/A&gt; and restart ambari and then start over. &lt;EM&gt;Initially this worked fine&lt;/EM&gt; (first 3 or 4 times), but then it gets into this weird state where the failed install icon comes back after posting the DELETE request and running ambari restart. Usually with failed installs, one can go under Services tab of Ambari and see the failed install service listed and attempt to re-install, but in this weird state, the service does not appear under Services any more. So basically I'm stuck with a cluster I can't remove this service from.&lt;/P&gt;&lt;P&gt;I have been able to reproduce this on 2 envs: one on CentOS 7 and one on RHEL 7, but never seen the problem on CentOS 6. &lt;/P&gt;&lt;P&gt;Questions&lt;/P&gt;&lt;P&gt;1. Is this a bug? &lt;/P&gt;&lt;P&gt;2. How do I manually remove all traces of this service on my cluster before attempting to re-install the service?&lt;/P&gt;&lt;P&gt;Ambari log shows that its unable to delete the service due to FK constraint&lt;/P&gt;&lt;PRE&gt;Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.5.2.v20140319-9ad6abd): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: org.postgresql.util.PSQLException: ERROR: update or delete on table "servicecomponentdesiredstate" violates foreign key constraint "hstcomponentstatecomponentname" on table "hostcomponentstate"
  Detail: Key (component_name, cluster_id, service_name)=(ZEPPELIN_MASTER, 2, ZEPPELIN) is still referenced from table "hostcomponentstate".
Error Code: 0
Call: DELETE FROM servicecomponentdesiredstate WHERE (((cluster_id = ?) AND (component_name = ?)) AND (service_name = ?))
        bind =&amp;gt; [3 parameters bound]
Query: DeleteObjectQuery(org.apache.ambari.server.orm.entities.ClusterServiceEntity@3426596b)
        at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:340)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.processExceptionForCommError(DatabaseAccessor.java:1611)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:898)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeNoSelect(DatabaseAccessor.java:962)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:631)
        at org.eclipse.persistence.internal.databaseaccess.ParameterizedSQLBatchWritingMechanism.executeBatch(ParameterizedSQLBatchWritingMechanism.java:149)
        at org.eclipse.persistence.internal.databaseaccess.ParameterizedSQLBatchWritingMechanism.executeBatchedStatements(ParameterizedSQLBatchWritingMechanism.java:134)
        at org.eclipse.persistence.internal.databaseaccess.ParameterizedSQLBatchWritingMechanism.appendCall(ParameterizedSQLBatchWritingMechanism.java:82)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:603)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:558)
        at org.eclipse.persistence.internal.sessions.AbstractSession.basicExecuteCall(AbstractSession.java:2002)
        at org.eclipse.persistence.sessions.server.ClientSession.executeCall(ClientSession.java:298)
&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2015 07:58:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94582#M7879</guid>
      <dc:creator>abajwa</dc:creator>
      <dc:date>2015-09-30T07:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94583#M7880</link>
      <description>&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;Stop ambari-server&lt;/P&gt;&lt;PRE&gt;DELETE FROM hostcomponentstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM hostcomponentdesiredstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM servicecomponentdesiredstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM servicedesiredstate WHERE service_name IN ('ZEPPELIN');

DELETE FROM clusterservices WHERE service_name IN ('ZEPPELIN');
&lt;/PRE&gt;&lt;P&gt;Start ambari-server&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2015 04:13:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94583#M7880</guid>
      <dc:creator>afernandez</dc:creator>
      <dc:date>2015-10-22T04:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94584#M7881</link>
      <description>&lt;P&gt;If all else fails, login to ambari server, connect to the ambari database&lt;/P&gt;&lt;P&gt;delete from hostcomponentstate where service_name = "ZEPPELIN";&lt;/P&gt;</description>
      <pubDate>Sat, 24 Oct 2015 08:50:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94584#M7881</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2015-10-24T08:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94585#M7882</link>
      <description>&lt;P&gt;This is helpful but we should file this as bug &lt;A rel="user" href="https://community.cloudera.com/users/310/jeff.html" nodeid="310"&gt;@jeff@hortonworks.com&lt;/A&gt; &lt;A rel="user" href="https://community.cloudera.com/users/134/mahadev.html" nodeid="134"&gt;@mahadev@hortonworks.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2015 22:16:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94585#M7882</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2015-10-31T22:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94586#M7883</link>
      <description>&lt;P&gt;Adding in&lt;A href="http://community.hortonworks.com/questions/577/on-ambari-211-centosrhel-7-removed-service-keeps-r.html#"&gt; @mahadev@hortonworks.com&lt;/A&gt; since it seems we have some issues with delete service via the API.&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://hortonworks.jira.com/browse/BUG-46931"&gt;https://hortonworks.jira.com/browse/BUG-46931&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2015 22:32:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94586#M7883</guid>
      <dc:creator>jeff1</dc:creator>
      <dc:date>2015-10-31T22:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: On Ambari 2.1.1 (Centos/RHEL 7): removed service keeps reappearing after server restart</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94587#M7884</link>
      <description>&lt;P&gt;I got the following to work to remove HBASE and NIFI from Ambari:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;# ambari-server stop&lt;/CODE&gt;
&lt;CODE&gt;Using python &lt;/CODE&gt;&lt;CODE&gt;/usr/bin/python&lt;/CODE&gt;
&lt;CODE&gt;Stopping ambari-server&lt;/CODE&gt;
&lt;CODE&gt;Ambari Server stopped&lt;/CODE&gt;
&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;# su - postgres&lt;/CODE&gt;
&lt;CODE&gt;-&lt;/CODE&gt;&lt;CODE&gt;bash&lt;/CODE&gt;&lt;CODE&gt;-4.1$ psql&lt;/CODE&gt;
&lt;CODE&gt;psql (8.4.20)&lt;/CODE&gt;
&lt;CODE&gt;Type &lt;/CODE&gt;&lt;CODE&gt;"help"&lt;/CODE&gt; &lt;CODE&gt;for&lt;/CODE&gt; &lt;CODE&gt;help.&lt;/CODE&gt;
&lt;CODE&gt;postgres=&lt;/CODE&gt;&lt;CODE&gt;# \connect ambari&lt;/CODE&gt;
&lt;CODE&gt;psql (8.4.20)&lt;/CODE&gt;
&lt;CODE&gt;You are now connected to database &lt;/CODE&gt;&lt;CODE&gt;"ambari"&lt;/CODE&gt;&lt;CODE&gt;.&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.hostcomponentstate WHERE service_name IN ('HBASE');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 14&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.hostcomponentdesiredstate WHERE service_name IN ('HBASE');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 14&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.servicecomponentdesiredstate WHERE service_name IN ('HBASE');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 4&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.servicedesiredstate WHERE service_name IN ('HBASE');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.clusterservices WHERE service_name IN ('HBASE');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# \q&lt;/CODE&gt;
&lt;CODE&gt;-&lt;/CODE&gt;&lt;CODE&gt;bash&lt;/CODE&gt;&lt;CODE&gt;-4.1$ &lt;/CODE&gt;&lt;CODE&gt;exit&lt;/CODE&gt;
&lt;CODE&gt;logout&lt;/CODE&gt;
&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;# ambari-server start&lt;/CODE&gt;
&lt;CODE&gt;Using python &lt;/CODE&gt;&lt;CODE&gt;/usr/bin/python&lt;/CODE&gt;
&lt;CODE&gt;Starting ambari-server&lt;/CODE&gt;
&lt;CODE&gt;Ambari Server running with administrator privileges.&lt;/CODE&gt;
&lt;CODE&gt;Organizing resource files at &lt;/CODE&gt;&lt;CODE&gt;/var/lib/ambari-server/resources&lt;/CODE&gt;&lt;CODE&gt;...&lt;/CODE&gt;
&lt;CODE&gt;Server PID at: &lt;/CODE&gt;&lt;CODE&gt;/var/run/ambari-server/ambari-server&lt;/CODE&gt;&lt;CODE&gt;.pid&lt;/CODE&gt;
&lt;CODE&gt;Server out at: &lt;/CODE&gt;&lt;CODE&gt;/var/log/ambari-server/ambari-server&lt;/CODE&gt;&lt;CODE&gt;.out&lt;/CODE&gt;
&lt;CODE&gt;Server log at: &lt;/CODE&gt;&lt;CODE&gt;/var/log/ambari-server/ambari-server&lt;/CODE&gt;&lt;CODE&gt;.log&lt;/CODE&gt;
&lt;CODE&gt;Waiting &lt;/CODE&gt;&lt;CODE&gt;for&lt;/CODE&gt; &lt;CODE&gt;server start....................&lt;/CODE&gt;
&lt;CODE&gt;Ambari Server &lt;/CODE&gt;&lt;CODE&gt;'start'&lt;/CODE&gt; &lt;CODE&gt;completed successfully.&lt;/CODE&gt;
&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;# ambari-server stop&lt;/CODE&gt;
&lt;CODE&gt;Using python &lt;/CODE&gt;&lt;CODE&gt;/usr/bin/python&lt;/CODE&gt;
&lt;CODE&gt;Stopping ambari-server&lt;/CODE&gt;
&lt;CODE&gt;Ambari Server stopped&lt;/CODE&gt;
&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;# su - postgres&lt;/CODE&gt;
&lt;CODE&gt;-&lt;/CODE&gt;&lt;CODE&gt;bash&lt;/CODE&gt;&lt;CODE&gt;-4.1$ psql&lt;/CODE&gt;
&lt;CODE&gt;psql (8.4.20)&lt;/CODE&gt;
&lt;CODE&gt;Type &lt;/CODE&gt;&lt;CODE&gt;"help"&lt;/CODE&gt; &lt;CODE&gt;for&lt;/CODE&gt; &lt;CODE&gt;help.&lt;/CODE&gt;
&lt;CODE&gt;postgres=&lt;/CODE&gt;&lt;CODE&gt;# \connect ambari&lt;/CODE&gt;
&lt;CODE&gt;psql (8.4.20)&lt;/CODE&gt;
&lt;CODE&gt;You are now connected to database &lt;/CODE&gt;&lt;CODE&gt;"ambari"&lt;/CODE&gt;&lt;CODE&gt;.&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.hostcomponentstate WHERE service_name IN ('NIFI');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.hostcomponentdesiredstate WHERE service_name IN ('NIFI');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.servicecomponentdesiredstate WHERE service_name IN ('NIFI');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.servicedesiredstate WHERE service_name IN ('NIFI');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# DELETE FROM ambari.clusterservices WHERE service_name IN ('NIFI');&lt;/CODE&gt;
&lt;CODE&gt;DELETE 1&lt;/CODE&gt;
&lt;CODE&gt;ambari=&lt;/CODE&gt;&lt;CODE&gt;# \q&lt;/CODE&gt;
&lt;CODE&gt;-&lt;/CODE&gt;&lt;CODE&gt;bash&lt;/CODE&gt;&lt;CODE&gt;-4.1$ &lt;/CODE&gt;&lt;CODE&gt;exit&lt;/CODE&gt;
&lt;CODE&gt;logout&lt;/CODE&gt;
&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;# ambari-server start&lt;/CODE&gt;
&lt;CODE&gt;Using python &lt;/CODE&gt;&lt;CODE&gt;/usr/bin/python&lt;/CODE&gt;
&lt;CODE&gt;Starting ambari-server&lt;/CODE&gt;
&lt;CODE&gt;Ambari Server running with administrator privileges.&lt;/CODE&gt;
&lt;CODE&gt;Organizing resource files at &lt;/CODE&gt;&lt;CODE&gt;/var/lib/ambari-server/resources&lt;/CODE&gt;&lt;CODE&gt;...&lt;/CODE&gt;
&lt;CODE&gt;Server PID at: &lt;/CODE&gt;&lt;CODE&gt;/var/run/ambari-server/ambari-server&lt;/CODE&gt;&lt;CODE&gt;.pid&lt;/CODE&gt;
&lt;CODE&gt;Server out at: &lt;/CODE&gt;&lt;CODE&gt;/var/log/ambari-server/ambari-server&lt;/CODE&gt;&lt;CODE&gt;.out&lt;/CODE&gt;
&lt;CODE&gt;Server log at: &lt;/CODE&gt;&lt;CODE&gt;/var/log/ambari-server/ambari-server&lt;/CODE&gt;&lt;CODE&gt;.log&lt;/CODE&gt;
&lt;CODE&gt;Waiting &lt;/CODE&gt;&lt;CODE&gt;for&lt;/CODE&gt; &lt;CODE&gt;server start....................&lt;/CODE&gt;
&lt;CODE&gt;Ambari Server &lt;/CODE&gt;&lt;CODE&gt;'start'&lt;/CODE&gt; &lt;CODE&gt;completed successfully.&lt;/CODE&gt;
&lt;CODE&gt;[root@ambari-server ~]&lt;/CODE&gt;&lt;CODE&gt;#&lt;/CODE&gt;&lt;/PRE&gt;,&lt;P&gt;This worked for me and now HBASE and NIFI no longer show up in Ambari:&lt;/P&gt;&lt;PRE&gt;[root@ambari-server ~]# ambari-server stop
Using python /usr/bin/python
Stopping ambari-server
Ambari Server stopped
[root@ambari-server ~]# su - postgres
-bash-4.1$ psql
psql (8.4.20)
Type "help" for help.
postgres=# \connect ambari
psql (8.4.20)
You are now connected to database "ambari".
ambari=# DELETE FROM ambari.hostcomponentstate WHERE service_name IN ('HBASE');
DELETE 14
ambari=# DELETE FROM ambari.hostcomponentdesiredstate WHERE service_name IN ('HBASE');
DELETE 14
ambari=# DELETE FROM ambari.servicecomponentdesiredstate WHERE service_name IN ('HBASE');
DELETE 4
ambari=# DELETE FROM ambari.servicedesiredstate WHERE service_name IN ('HBASE');
DELETE 1
ambari=# DELETE FROM ambari.clusterservices WHERE service_name IN ('HBASE');
DELETE 1
ambari=# \q
-bash-4.1$ exit
logout
[root@ambari-server ~]# ambari-server start
Using python /usr/bin/python
Starting ambari-server
Ambari Server running with administrator privileges.
Organizing resource files at /var/lib/ambari-server/resources...
Server PID at: /var/run/ambari-server/ambari-server.pid
Server out at: /var/log/ambari-server/ambari-server.out
Server log at: /var/log/ambari-server/ambari-server.log
Waiting for server start....................
Ambari Server 'start' completed successfully.
[root@ambari-server ~]# ambari-server stop
Using python /usr/bin/python
Stopping ambari-server
Ambari Server stopped
[root@ambari-server ~]# su - postgres
-bash-4.1$ psql
psql (8.4.20)
Type "help" for help.
postgres=# \connect ambari
psql (8.4.20)
You are now connected to database "ambari".
ambari=# DELETE FROM ambari.hostcomponentstate WHERE service_name IN ('NIFI');
DELETE 1
ambari=# DELETE FROM ambari.hostcomponentdesiredstate WHERE service_name IN ('NIFI');
DELETE 1
ambari=# DELETE FROM ambari.servicecomponentdesiredstate WHERE service_name IN ('NIFI');
DELETE 1
ambari=# DELETE FROM ambari.servicedesiredstate WHERE service_name IN ('NIFI');
DELETE 1
ambari=# DELETE FROM ambari.clusterservices WHERE service_name IN ('NIFI');
DELETE 1
ambari=# \q
-bash-4.1$ exit
logout
[root@ambari-server ~]# ambari-server start
Using python /usr/bin/python
Starting ambari-server
Ambari Server running with administrator privileges.
Organizing resource files at /var/lib/ambari-server/resources...
Server PID at: /var/run/ambari-server/ambari-server.pid
Server out at: /var/log/ambari-server/ambari-server.out
Server log at: /var/log/ambari-server/ambari-server.log
Waiting for server start....................
Ambari Server 'start' completed successfully.
[root@ambari-server ~]#&lt;/PRE&gt;</description>
      <pubDate>Sat, 13 Aug 2016 23:09:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/On-Ambari-2-1-1-Centos-RHEL-7-removed-service-keeps/m-p/94587#M7884</guid>
      <dc:creator>Darren_Curtis</dc:creator>
      <dc:date>2016-08-13T23:09:36Z</dc:date>
    </item>
  </channel>
</rss>

