EC2 Container Service with Scalr

2017-02-01 Thread Amit Saini
Hi Team,

I am working for docker integration with scalr and following this document 
.
 
In this document AWS Instance launched after that Docker and Crane software 
are installed and Crane pull the images in instance. While AWS have *EC2 
Container Service. *Is there any way to use *EC2 Container Service *with 
Scalr?

Regards 
Amit

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Replace new AWS account in Scalr

2017-02-01 Thread Amit Saini
Hi Team,

I want to replace new AWS account in Scalr. I have deleted the key and 
added new key which is related to new account AWS and then launch the 
Instance but Instance is launched in old AWS account 

Regards
Amit

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Deploy with Docker :: autodiscovery.py is not working

2017-01-17 Thread Amit Saini
Thanks Mark

On Tuesday, January 17, 2017 at 3:58:56 PM UTC-5, Marc O'Brien wrote:
>
> Hi Amit,
>
> The Docker tutorial you referenced only serves as an example to deploy the 
> "Webapp" tier of the 3 Tier tutorial.  For the autodiscovery script to 
> execute correctly you will need to complete configuration of the Farm with 
> the other Farm Roles outlined in the 3 Tier App Tutorial 
> <https://scalr-wiki.atlassian.net/wiki/display/docs/3+Tier+Web+Application+-+Deployment>
> .
>
> Many thanks,
> Wm. Marc O'Brien
> Scalr Technical Support
>
> On Tuesday, January 17, 2017 at 1:51:54 PM UTC-7, Amit Saini wrote:
>>
>> Hi Team,
>>
>> I am trying to deploy with Docker  and following the Scalr documentation 
>> <https://scalr-wiki.atlassian.net/wiki/display/docs/Step+3+-+Use+the+Docker+Role>
>>  
>>
>> *Script *autodiscovery.py 
>> <https://github.com/scalr-tutorials/3-tier-app/blob/master/scripts/autodiscovery.py>
>>  
>> is throwing error while it execute.
>>
>>
>>
>> *ORCHESTRATION*
>>
>>
>>
>> *GLOBAL VARIBALE*
>>
>>
>>
>> *ORCHESTRATION LOG*
>>
>>
>> Please find the attached log
>>
>>
>> Please help
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Deploying Hadoop cluster-Need Help

2017-01-13 Thread Amit Saini
 

Hi Team,

I am trying to deploying Hadoop cluster using scalr and following these 
document 
<https://scalr-wiki.atlassian.net/wiki/display/docs/Deploying+a+Hadoop+Cluster>

While creating the hadoop role as mentioned in steps "*Import this 
Deployment Script 
<https://github.com/scalr-tutorials/orchestration-examples/blob/master/deploy.sh>
 in Scalr 
as a Scalr Script 
<https://scalr-wiki.atlassian.net/wiki/display/docs/Scalr+Scripts>.*" I 
have copy and paste the *deploy.sh* script from Git and try to save it But 
got the alert message "*It looks like you might be using Script Parameters 
in this Script. If that is the case, enable Script Parameter 
Interpolation."*

Could you please let me know from where I can *enable Script Parameter 
Interpolation in scalr*




*Regards*

*Amit Saini*

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Shell script to get the IP address of running instance

2017-01-13 Thread Amit Saini
Thanks Deniele,

Its workingIts printed both Public and Private IP



On Friday, January 13, 2017 at 10:35:28 AM UTC-5, Daniele Testa wrote:
>
> Amit, this is already available to your scripts in the built-in Global 
> Variables. Just make a simple script like:
>
> #!/bin/bash
> env
>
> Then put it on the BeforeHostUp event on one of your Farm Roles and launch 
> an instance. If you then look in the Orchestration Log, you will be able to 
> see the complete list of built-in Global Variables that are available to 
> your script.
>
> In your specific case, as you need the instance IP address, the name of 
> the Global Variables are:
>
> SCALR_INTERNAL_IP
> SCALR_EXTERNAL_UP
>
> Access them in your script as normal Environment Variables, such as:
>
> echo $SCALR_INTERNAL_IP
> echo $SCALR_EXTERNAL_IP
>
> On Fri, Jan 13, 2017 at 7:14 AM, Amit Saini <amit@gmail.com 
> > wrote:
>
>> Thanks Marc
>>
>>
>> On Wednesday, January 11, 2017 at 3:46:22 PM UTC-5, Marc O'Brien wrote:
>>>
>>> Hi Amit,
>>>
>>> Depending on the scope of the IPs you are interested in, you should be 
>>> able to achieve this by using szradm queryenv 
>>> <https://scalr-wiki.atlassian.net/wiki/display/docs/szradm+queryenv> 
>>> within your orchestration script.  Let us know if you have any questions or 
>>> troubles with implementation.
>>>
>>> Many thanks,
>>> Wm. Marc O'Brien
>>> Scalr Technical Support
>>>
>>> On Wednesday, January 11, 2017 at 1:37:07 PM UTC-7, Amit Saini wrote:
>>>>
>>>>  Hi Marc,
>>>>
>>>> I am planning to build a shell script to install the ansible on newly 
>>>> created instances because of that i need the Instance's IP address
>>>>
>>>> Regards
>>>> Amit Saini
>>>>
>>>> On Wednesday, January 11, 2017 at 3:29:48 PM UTC-5, Marc O'Brien wrote:
>>>>>
>>>>> Hi Amit,
>>>>>
>>>>> As Jeff noted, we need to get a bit of additional context about your 
>>>>> use case so that we may provide the best recommendation.  Are you 
>>>>> attempting to query this from the Scalr server and retrieve results from 
>>>>> the Scalr database, or are you looking to obtain this information on your 
>>>>> running instances as part of an Orchestration script?  Otherwise, are you 
>>>>> looking to gather this information from your local workstation? What do 
>>>>> you 
>>>>> plan to do with these IPs once you have your query results?  This 
>>>>> information will help to clarify your needs and isolate the best method 
>>>>> to 
>>>>> achieve your desired results.
>>>>>
>>>>> Many thanks,
>>>>> Wm. Marc O'Brien
>>>>> Scalr Technical Support
>>>>>
>>>>>
>>>>> On Monday, January 9, 2017 at 2:48:55 PM UTC-7, Amit Saini wrote:
>>>>>>
>>>>>> Hi,
>>>>>>
>>>>>> Is there any shell script to get the IP address of running instance 
>>>>>> from scalr database...?? 
>>>>>>
>>>>>>
>>>>>> Regards
>>>>>>
>>>>>> Amit Saini
>>>>>>
>>>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "scalr-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to scalr-discus...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Regards,
> Daniele Testa | Sr. Solutions Architect @ Scalr | dan...@scalr.com 
>  | www.scalr.com | blog.scalr.com
>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Shell script to get the IP address of running instance

2017-01-13 Thread Amit Saini
Thanks Marc

On Wednesday, January 11, 2017 at 3:46:22 PM UTC-5, Marc O'Brien wrote:
>
> Hi Amit,
>
> Depending on the scope of the IPs you are interested in, you should be 
> able to achieve this by using szradm queryenv 
> <https://scalr-wiki.atlassian.net/wiki/display/docs/szradm+queryenv> 
> within your orchestration script.  Let us know if you have any questions or 
> troubles with implementation.
>
> Many thanks,
> Wm. Marc O'Brien
> Scalr Technical Support
>
> On Wednesday, January 11, 2017 at 1:37:07 PM UTC-7, Amit Saini wrote:
>>
>>  Hi Marc,
>>
>> I am planning to build a shell script to install the ansible on newly 
>> created instances because of that i need the Instance's IP address
>>
>> Regards
>> Amit Saini
>>
>> On Wednesday, January 11, 2017 at 3:29:48 PM UTC-5, Marc O'Brien wrote:
>>>
>>> Hi Amit,
>>>
>>> As Jeff noted, we need to get a bit of additional context about your use 
>>> case so that we may provide the best recommendation.  Are you attempting to 
>>> query this from the Scalr server and retrieve results from the Scalr 
>>> database, or are you looking to obtain this information on your running 
>>> instances as part of an Orchestration script?  Otherwise, are you looking 
>>> to gather this information from your local workstation? What do you plan to 
>>> do with these IPs once you have your query results?  This information will 
>>> help to clarify your needs and isolate the best method to achieve your 
>>> desired results.
>>>
>>> Many thanks,
>>> Wm. Marc O'Brien
>>> Scalr Technical Support
>>>
>>>
>>> On Monday, January 9, 2017 at 2:48:55 PM UTC-7, Amit Saini wrote:
>>>>
>>>> Hi,
>>>>
>>>> Is there any shell script to get the IP address of running instance 
>>>> from scalr database...?? 
>>>>
>>>>
>>>> Regards
>>>>
>>>> Amit Saini
>>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Shell script to get the IP address of running instance

2017-01-09 Thread Amit Saini
 

Hi,

Is there any shell script to get the IP address of running instance from 
scalr database...?? 


Regards

Amit Saini

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Step Require to setup Gthub webhook in scalr

2016-12-01 Thread Amit Saini
 

Hi Marc,

Thanks Marc, Yes I saw the suggested document  :)

 Is there any way to send the notification to scalr by which scalr got to 
know that new Check-in or branch merging done in Github and based on the 
notification scalr automatically trigger the deployment script on select 
Farms and  Role to update the code in running instance 


Regards
Amit Saini


On Wednesday, November 30, 2016 at 3:25:49 PM UTC-5, Marc O'Brien wrote:
>
> Hi Amit,
>
> We do not have prescriptive instructions for this, but we do have an 
> example for CI/CD using Jenkins in our wiki here 
> <https://scalr-wiki.atlassian.net/wiki/pages/viewpage.action?pageId=10748036>.
>   
> I hope this helps you get started.
>
> Many thanks,
> Wm. Marc O'Brien
> Scalr Technical Support
>
> On Wednesday, November 30, 2016 at 1:15:59 PM UTC-7, Amit Saini wrote:
>>
>> Hi Team,
>>
>> I am working on the continuous integration with Scalr
>>
>> We are using Github as version controller. we have to setup Gthub webhook 
>> in scalr 
>>
>> if any new check-in come in testing branch of github scalr got to the 
>> notification and deploy the new check-in code in Testing Server 
>> automatically 
>>
>> Could you please share me steps 
>>
>>  
>>
>> Thanks 
>>
>> Amit Saini
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Step Require to setup Gthub webhook in scalr

2016-11-30 Thread Amit Saini
 

Hi Team,

I am working on the continuous integration with Scalr

We are using Github as version controller. we have to setup Gthub webhook 
in scalr 

if any new check-in come in testing branch of github scalr got to the 
notification and deploy the new check-in code in Testing Server 
automatically 

Could you please share me steps 

 

Thanks 

Amit Saini

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error in Integration of Ansible Tower with Scalr

2016-11-10 Thread Amit Saini
 

Hi Marc,

I did change in first line ( marked bold) of following script. Now not 
getting this error 

 failed (rc=2) with output: python: can't open file [Errno 2] No such file 
or directory

***

*#!usr/bin/bash/python2.7 *

if [ "$1" == "--list" ]; then

   python /var/lib/awx/scalr/scalr-ansible-tower/inventory.py 
$SCALR_API_URL $SCALR_API_KEY_ID $SCALR_API_KEY_SECRET $SCALR_ENV_ID 
$SCALR_FARM_ID

else

   echo '{}'

fi



 


*But  New Error is came  :(*

2.248 INFO Updating inventory 4: Scalr Inventory 2.277 INFO Reading 
executable JSON source: /tmp/ansible_tower_launch_8bq4Ga/tmpy0MuDU 2.301 
ERROR Failed to load JSON from: Traceback (most recent call last): File 
"/usr/bin/tower-manage", line 9, in  
load_entry_point('ansible-tower==3.0.3', 'console_scripts', 
'tower-manage')() File "/lib/python2.7/site-packages/awx/__init__.py", line 
103, in manage File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/__init__.py",
 
line 354, in execute_from_command_line utility.execute() File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/__init__.py",
 
line 346, in execute 
self.fetch_command(subcommand).run_from_argv(self.argv) File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/base.py",
 
line 394, in run_from_argv self.execute(*args, **cmd_options) File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/base.py",
 
line 445, in execute output = self.handle(*args, **options) File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/base.py",
 
line 661, in handle return self.handle_noargs(**options) File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 
line 1285, in handle_noargs File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 
line 499, in load_inventory_source File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 
line 503, in load_inventory_source File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 
line 393, in load File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 
line 381, in command_to_json RuntimeError: ['proot', '-v', '0', '-r', '/', 
'-b', '/tmp/ansible_tower_launch_8bq4Ga/tmp_P6tYy:/etc/tower', '-b', 
'/tmp/ansible_tower_launch_8bq4Ga/tmpI8YWHM:/tmp', '-b', 
'/tmp/ansible_tower_launch_8bq4Ga/tmpzmar2T:/var/lib/awx', '-b', 
'/tmp/ansible_tower_launch_8bq4Ga/tmp91ioqa:/var/lib/awx/job_status', '-b', 
'/tmp/ansible_tower_launch_8bq4Ga/tmpAB66lA:/var/lib/awx/projects', '-b', 
'/tmp/ansible_tower_launch_8bq4Ga/tmp0gB6tg:/var/log', '-b', 
'/tmp/ansible_tower_launch_8bq4Ga:/tmp/ansible_tower_launch_8bq4Ga', '-b', 
'/var/lib/awx/venv/ansible:/var/lib/awx/venv/ansible', '-b', 
'/var/lib/awx/venv/tower:/var/lib/awx/venv/tower', '-w', 
'/tmp/ansible_tower_launch_8bq4Ga', 
'/tmp/ansible_tower_launch_8bq4Ga/tmpy0MuDU', '--list'] failed (rc=1) with 
output: proot error: execve("/tmp/ansible_tower_launch_8bq4Ga/tmpy0MuDU"): 
No such file or directory proot info: possible causes: * the program is a 
script but its interpreter (eg. /bin/sh) was not found; * the program is an 
ELF but its interpreter (eg. ld-linux.so) was not found; * the program is a 
foreign binary but qemu was not specified; * qemu does not work correctly 
(if specified); * the loader was not found or doesn't work. fatal error: 
see `proot --help`. proot error: can't chmod '/tmp/proot-14165-FKg5i0': No 
such file or directory


On Wednesday, November 9, 2016 at 11:45:52 AM UTC-5, Amit Saini wrote:
>
>
> Thanks Marc for replying 
>
> Yes I am following Scalr document 
> <https://scalr-wiki.atlassian.net/wiki/display/docs/Step+1+-+Synchronising+Scalr+Servers+with+an+Ansible+inventory>.
>  
> I have copy the content of *scalr-ansible-tower* to */var/lib/awx/scalr*  ( 
> Refer the Image4 ) but still I am getting the same error ( Refer 
> job_477.txt )
>
>  
>
>  Please help me!!!
>
> On Tuesday, November 8, 2016 at 4:05:04 PM UTC-5, Marc O'Brien wrote:
>>
>> Hi Amit,
>>
>> Are you following our Ansible Tower with Scalr Tutorial 
>> <https://scalr-wiki.atlassian.net/wiki/display/docs/Step+1+-+Synchronising+Scalr+Servers+with+an+Ansible+inventory>?
>>   
>> If so, it appears that when you run "git clone 
>> https://github.com/scalr-tutorials/scalr-ansible-tower.git; there is an 
>> additional level in the directory tree.  Do you see any change to behavior 
>> if you move the contents of scalr-ansible-tower to /var/lib/awx/scalr, or 
>> update the path in the Ansible script to incl

Re: Error in Integration of Ansible Tower with Scalr

2016-11-09 Thread Amit Saini


Thanks Marc for replying 

Yes I am following Scalr document 
<https://scalr-wiki.atlassian.net/wiki/display/docs/Step+1+-+Synchronising+Scalr+Servers+with+an+Ansible+inventory>.
 
I have copy the content of *scalr-ansible-tower* to */var/lib/awx/scalr*  ( 
Refer the Image4 ) but still I am getting the same error ( Refer 
job_477.txt )

 

 Please help me!!!

On Tuesday, November 8, 2016 at 4:05:04 PM UTC-5, Marc O'Brien wrote:
>
> Hi Amit,
>
> Are you following our Ansible Tower with Scalr Tutorial 
> <https://scalr-wiki.atlassian.net/wiki/display/docs/Step+1+-+Synchronising+Scalr+Servers+with+an+Ansible+inventory>?
>   
> If so, it appears that when you run "git clone 
> https://github.com/scalr-tutorials/scalr-ansible-tower.git; there is an 
> additional level in the directory tree.  Do you see any change to behavior 
> if you move the contents of scalr-ansible-tower to /var/lib/awx/scalr, or 
> update the path in the Ansible script to include the scalr-ansible-tower 
> folder in the directory path to inventory.py?  This should resolve the "no 
> such file" error that you are experiencing.
>
> Many thanks,
> Wm. Marc O'Brien
> Scalr Technical Support
>
>
>
> On Tuesday, November 8, 2016 at 1:44:30 PM UTC-7, Amit Saini wrote:
>>
>> Hi Team,
>>
>> While Integration of Ansible Tower with Scalr and I configure the custom 
>> script ansible tower's Inventory (Refer Image 1) and try to Sync-up with 
>> Scalr but got the error  ( Refer text file job_419) with message 
>> *'/var/lib/awx/scalr/inventory.py': 
>> [Errno 2] No such file or directory*
>>
>>
>> While I have SSH ansible tower machine and found that there is not 
>> *inventory.py* file available on the following path */var/lib/awx/scalr/  
>> (Refer Image3). *I found *scalr-ansible-tower* file over there
>>
>> Please help me!!!
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
2.488 INFO Updating inventory 1: webservers
2.526 INFO Reading executable JSON source: 
/tmp/ansible_tower_launch_0_k0Yi/tmp6tHDj0
2.630 ERRORFailed to load JSON from: 
Traceback (most recent call last):
  File "/usr/bin/tower-manage", line 9, in 
load_entry_point('ansible-tower==3.0.3', 'console_scripts', 
'tower-manage')()
  File "/lib/python2.7/site-packages/awx/__init__.py", line 103, in manage
  File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/__init__.py",
 line 354, in execute_from_command_line
utility.execute()
  File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/__init__.py",
 line 346, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
  File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/base.py",
 line 394, in run_from_argv
self.execute(*args, **cmd_options)
  File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/base.py",
 line 445, in execute
output = self.handle(*args, **options)
  File 
"/var/lib/awx/venv/tower/lib/python2.7/site-packages/django/core/management/base.py",
 line 661, in handle
return self.handle_noargs(**options)
  File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 line 1285, in handle_noargs
  File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 line 499, in load_inventory_source
  File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 line 503, in load_inventory_source
  File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 line 393, in load
  File 
"/lib/python2.7/site-packages/awx/main/management/commands/inventory_import.py",
 line 381, in command_to_json
RuntimeError: ['proot', '-v', '0', '-r', '/', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi/tmphmXvgu:/etc/tower', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi/tmpOnGbqc:/tmp', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi/tmpxVfj5u:/var/lib/awx', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi/tmpRJEh_m:/var/lib/awx/job_status', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi/tmp9_DVdJ:/var/lib/awx/projects', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi/tmphsqhhq:/var/log', '-b', 
'/tmp/ansible_tower_launch_0_k0Yi:/tmp/ansible_tower_launch_0_k0Yi', '-b', 
'/var/lib/awx/venv/ansible:/var/lib/awx/venv/ansible', '-b', 
'/var/lib/awx/venv/tower:/var/lib/awx/venv/tower', '-w', 
'/tmp/ansible_tower_launch_0_k0Yi', 
'/tmp/ansible_tower_launch_0_k0Yi/tmp6tHDj0', '--list'] failed (rc=2) with 
output: python: can't open file '/var/lib/awx/scalr/inventory.py': [Errno 2] No 
such file or directory



Re: Step "Wait for OS to finish booting" is not Complete.EC2 Instance terminated after every 40 Minutes

2016-10-10 Thread Amit Saini
Hi lgor

Yes you are right Its configured on 192.168.197.131.

Do i need to change the IP Address..?? or what else I need to do to make it 
fix.

Cloud you please suggest me a way to solve this Issue. I am new to the Scalr

Regards 
Amit Saini

On Monday, October 10, 2016 at 4:52:56 PM UTC-4, DicsyDel wrote:
>
> Scalr is installed and configured on 192.168.197.131. Agent is unable 
> to start because it's unable to establish connectivity with scalr host 
> to pull configuration. Both way communication between agent and scalr 
> is required. 
>
> Regards, 
> Igor 
>
> On 10 October 2016 at 13:45, Amit Saini <amit@gmail.com > 
> wrote: 
> > Hi Marc, 
> > 
> > 
> > This is same behaviors of all FARMS/Role not for particular FARM and AWS 
> > console indicate that the machines are running in sate not in 
> initializing 
> > State 
> > 
> > 
> > Don't Know I am Right or Wrong : But Its look like the Scalarizr agents 
>  is 
> > not able to communicate with my Scalr to notify the state. I have 
> analyzed 
> > the AWS Instance and found  everything fine 
> > 
> > 
> > I have installed Scalr on Ubuntu 14 and VMWare where firewall is 
> disable. 
> > 
> > 
> > Please find the scalarizr logs 
> > 
> > 
> > Getting WARNING: 
> > 
> > 
> > 
> > 
> > 
> > 2016-10-10 20:02:37,818+00:00 - WARNING - scalarizr.app - Failed to talk 
> to 
> > UpdateClient: Failed to get UpdateClient status. Timeout: 60 seconds 
> reached 
> > 
> > Traceback (most recent call last): 
> > 
> >   File 
> > 
> "/opt/scalarizr/embedded/lib/python2.7/site-packages/scalarizr-4.11.7-py2.7.egg/scalarizr/app.py",
>  
>
> > line 958, in _talk_to_updclient 
> > 
> > error_text='Failed to get UpdateClient status') 
> > 
> >   File 
> > 
> "/opt/scalarizr/embedded/lib/python2.7/site-packages/scalarizr-4.11.7-py2.7.egg/scalarizr/util/__init__.py",
>  
>
> > line 332, in wait_until 
> > 
> > raise BaseException(msg) 
> > 
> > BaseException: Failed to get UpdateClient status. Timeout: 60 seconds 
> > reached 
> > 
> > 
> > 
> > Regards 
> > Amit Saini 
> > 
> > 
> > On Monday, October 10, 2016 at 2:53:49 PM UTC-4, Marc O'Brien wrote: 
> >> 
> >> Hi Amit, 
> >> 
> >> Are you able to SSH in to these machines and gather any logs while they 
> >> are in the OS booting stage?  Does the AWS console indicate that the 
> >> machines are running or still initializing?  Is this behavior impacting 
> all 
> >> roles/farms or only this one?  If only this farm is impacted, what is 
> >> different about this farm or role that could be causing the failure to 
> boot? 
> >> This information should help you isolate why these instances are 
> failing to 
> >> boot when other farms previously launched successfully for you. 
> >> 
> >> Many thanks, 
> >> Wm. Marc O'Brien 
> >> Scalr Technical Support 
> >> 
> >> On Monday, October 10, 2016 at 7:37:07 AM UTC-6, Amit Saini wrote: 
> >>> 
> >>> Hi Marc, 
> >>> 
> >>> When I was monitoring my Server and observer some strange behavior 
> with 
> >>> my Server and EC2 Instance 
> >>> 
> >>> 
> >>> 1. Its taking lot of time in 3rd step "Wait for OS to finish booting". 
> It 
> >>> take near about 40 Minutes. 
> >>> 
> >>> Which is same time mention in FARM setting to terminated the Instance 
> if 
> >>> not get the Hostup notification (Refer Image 1,2) 
> >>> 
> >>> 
> >>> 2. If after 40 minutes, My EC2 Instance got terminated and a New 
> instance 
> >>> start running (Refer Image 3 ,4) Initialization process start again 
> and then 
> >>> 3rd step wait for 40 minutes and then terminated 
> >>> 
> >>> 
> >>> 
> >>> I have change the Instance termination 2400 Seconds to 5000 Seconds 
> >>> (Refer Image 5)but got the same issue after 3rd step EC2 Instance got 
> >>> terminated and new Instance start 
> >>> 
> >>> 
> >>> 
> >>> Its look like that Instance is not able to boot the OS 
> >>> 
> >>> Please Check at the security Group (Refer Image6,7) 
> >>> 
> >>> 
> >>> Kindly Help 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "scalr-discuss" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an 
> > email to scalr-discus...@googlegroups.com . 
> > For more options, visit https://groups.google.com/d/optout. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can I use t2. micro without VPC..?

2016-09-22 Thread Amit Saini
 

Hi Marc,

I am trying to add Role with my FARM and want to choose t2.micro instance 
But dorpdown showing t2.micro in disable mode with message Compatible with 
VPC roles only 

Can I use t2. micro without VPC..?


Regards 

Amit Saini

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Choose Instance type

2016-09-21 Thread Amit Saini
 

Hi Marc,

I have launch one Image using the Scalr. Its configured m3.large instance 
in AWS.EC2 Instance is come with variety just like 
t2.small,t2.medium.m3.medium,m3.2xlarge..etc.I tried to find the options to 
change EC2Instance but didn't get any options

Does scalr have any option to change the instance type from the IMAGE or 
Somewhere in UI..???


Regards

Amit

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error while Sync Shared Roles

2016-09-20 Thread Amit Saini
Thanks Marc
Its Sync Now

Regards 
Amit

On Tuesday, September 20, 2016 at 2:25:28 PM UTC-4, Marc O'Brien wrote:
>
> Hi Amit,
>
> The whitelist request has been processed on our end.  Shared Roles Sync 
> should complete successfully for this installation now.  Can you test this 
> again?
>
> Many thanks,
> Wm. Marc O'Brien
> Scalr Technical Support
>
> On Tuesday, September 20, 2016 at 12:22:29 PM UTC-6, Marc O'Brien wrote:
>>
>> Hi Amit,
>>
>> I did see your whitelist request come through.  This message means that 
>> our whitelisting database does not yet have your Installation ID in place 
>> as we are still processing the whitelist request.
>>
>> You will receive a confirmation email soon once this has been completed 
>> on our end.  Let us know if issues persist after you have received the 
>> confirmation email.
>>
>> Many thanks,
>> Wm. Marc O'Brien
>> Scalr Technical Support
>>
>> On Tuesday, September 20, 2016 at 12:07:40 PM UTC-6, Amit Saini wrote:
>>>
>>> Hi Marc
>>>
>>> *I got the following error while Sync Shared Roles*
>>>
>>> amit@amit-virtual-machine:~$ sudo /opt/scalr-server/embedded/
>>> bin/php /opt/scalr-server/embedded/scalr/app/tools/sync_shared_roles.php
>>> [sudo] password for amit: 
>>> Unable to import shared roles: Unrecognized setup: update denied. Please 
>>> use this form http://hub.am/1fDAc2B to be 
>>> whitelisted.amit@amit-virtual-machine:~$
>>>
>>> Regards 
>>> Amit Saini
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Error while Sync Shared Roles

2016-09-20 Thread Amit Saini
Hi Marc

*I got the following error while Sync Shared Roles*

amit@amit-virtual-machine:~$ sudo /opt/scalr-server/embedded/
bin/php /opt/scalr-server/embedded/scalr/app/tools/sync_shared_roles.php
[sudo] password for amit: 
Unable to import shared roles: Unrecognized setup: update denied. Please 
use this form http://hub.am/1fDAc2B to be 
whitelisted.amit@amit-virtual-machine:~$

Regards 
Amit Saini

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Scalr-meta is not available in my AWS Console

2016-09-20 Thread Amit Saini
Hi Marc

Could you please share me Scalr like to start EC2 Instance with Farms and 
Role configurations...???

Regards
Amit  

On Monday, September 19, 2016 at 6:57:30 PM UTC-4, Marc O'Brien wrote:
>
> Hi Amit,
>
> It sounds like the issue here is that you have not yet launched any AWS 
> instances with Scalr using your Cloud Credentials.  You will need to do the 
> following:
>
>1. Launch your first VM in Scalr, so it will tag this first resource.
>2. Wait for 8 hours.
>
> Let us know if troubles persist at that point.
>
>
> Many thanks,
> Wm. Marc O'Brien
> Scalr Technical Support
>
> On Monday, September 19, 2016 at 4:21:55 PM UTC-6, Marc O'Brien wrote:
>>
>> Hi Amit,
>>
>> Did you also Add and Save the Cloud Credentials for the AWS account 
>> within Scalr?  In my testing once I have created and added the AWS 
>> credentials to my Scalr deployment, Scalr then created the appropriate tags 
>> within the AWS account.  If you have done this, are you able to launch 
>> Farms and view the scalr-meta tag on any instance of Farm Roles that are 
>> instantiated?  As shown in the attached screenshot of the Farm Designer, 
>> Scalr will automatically provision Farm Role instances with this tag and 
>> values specific to the instance.
>>
>> Many thanks,
>> Wm. Marc O'Brien
>> Scalr Technical Support
>>
>>
>> 
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Scalr-meta is not available in my AWS Console

2016-09-19 Thread Amit Saini

Hi Everyone,

I am trying to connect ASW billing with Scalr as per scalr document 

  
*scalr-meta *should be in active state but my AWS's *Cost Allocation Tags 

 
*do not have any entry for 
scalr-meta

do we need to add the *scalr-meta *in AWS ???
*if yes*
then Where need to add in and what will be its value 

anybody can help..?

Regards

Amit

-- 
You received this message because you are subscribed to the Google Groups 
"scalr-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to scalr-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.