Sponsored Content
Full Discussion: Change Solaris hostid
Operating Systems Solaris Change Solaris hostid Post 302482056 by avisht on Monday 20th of December 2010 01:26:52 PM
Old 12-20-2010
We're working with a dedicated vendor which created a special application for us so i can't really expose the name of the application nor it will be familiar for anyone.
I need to install it on another machine since we need to test in on another environment while the real server is currently unavailable.

Can you specify the several ways of the workaround you are mentioning?
I didn't manage to find even one (at least working).
 

10 More Discussions You Might Find Interesting

1. Solaris

How to change the HostID?--SunFire880

Hi, Guys I have to change the HostID for my SUNFire880 in lab. Can some body help me? and give the detail procedure? I don't think the command "mkp" can be used in SUNFire880 system. So please help!:cool: (2 Replies)
Discussion started by: surainbow
2 Replies

2. Solaris

procedure to change hostid of Sun server

Hello Everybody I would like to know that I have configure the OS & other application on the SunFire V440 server 1) If suppose no hostid base software install in that v440 server & if some problem comes in the motherboard of that server. If I remove the harddisk ( on which Solaris & other... (4 Replies)
Discussion started by: girish.batra
4 Replies

3. Solaris

Solaris 10 - HOSTID changed ???

Hello everybody, please , I need an urgent help. I reinstalled our server Sun X4150. What was changed: our two disks were changed to raid1 and I installed a never version of Solaris 10 (previously the version from 12/2009 was used, now a version from 03/2010). what I'm surprised, the... (3 Replies)
Discussion started by: freeangel
3 Replies

4. Solaris

Change hostid for software install - license issue

Hi all. Solaris 9. After I change the hostid, how can I change it back without rebooting the machine? Thanks (2 Replies)
Discussion started by: jamie_collins
2 Replies

5. Solaris

How to find HostID?

Dear All, I am facing a simple problem . I have a x6270 server attached to a M6000 chasis. The server is fresh i:e O/S is not installed in it. Now the customer is asking for the HostID of that server. I have tried every possible way but i am not able to find the HostID .I went through the... (4 Replies)
Discussion started by: sudhansu
4 Replies

6. Solaris

How to change hostid saved in rpool?

Hi, We have a Sun M5000. I am now trying to boot the second system domain by using the boot disk (a mirrored boot disk actually) of the first domain (if succeed then no OS installation is needed for the second domain). I got the following errors: SPARC Enterprise M5000 Server, using Domain... (21 Replies)
Discussion started by: aixlover
21 Replies

7. Solaris

Change hostID of Solaris 10 virtual/guest machine installed by Virtual Box 4.1.12 on Windows-XP host

Trying to set or modify the randomly set hostID of a Solaris 10 virtual/guest machine that I installed on a Windows-XP host machine (using Virtual Box 4.1.12). I was able to set/modify the hostname of the Solaris 10 virtual/guest machine during installation as well as via the Virtual Box... (4 Replies)
Discussion started by: Matt_VB
4 Replies

8. Red Hat

How can I change hostid?

There is no /etc/hostid file. I know that there is no relationship between with MAC address and hostid. There are a lot of scripts on the net but how can I exactly do in my case. :rolleyes: (4 Replies)
Discussion started by: getrue
4 Replies

9. Red Hat

Change hostid to particullar string

Hello guys, currently I'm working on migration services from physical to virtual server (RHEL 6). One form applications is binded to hostid of old server. I put value of hostid from old server to the /etc/hostid on new server, but output of hostid command is giving nonsenses then. #... (0 Replies)
Discussion started by: brusell
0 Replies

10. Solaris

Modify the Hostid in a Solaris 11 Global Zone running on VMWare

Hi Folks, I've been presented with an unexpected problem and I'm not sure if I can resolve it without some input from people. I have on this site 3 license servers running Solaris, one at; SunOS xxxxxx 5.8 Generic_117350-08 sun4u sparc SUNW,Ultra-5_10 One at; SunOS yyyyyy 5.7... (12 Replies)
Discussion started by: gull04
12 Replies
RunUnitTests(1) 					    BSD General Commands Manual 					   RunUnitTests(1)

NAME
RunUnitTests -- run unit tests for the current target SYNOPSIS
RunUnitTests DESCRIPTION
RunUnitTests examines its environment to determine what type of test bundle the current target represents, and runs the bundle's tests in the most appropriate fashion. If possible, it will run the tests for all appropriate architectures in sequence, and will run the tests with Objective-C garbage collection enabled or disabled as appropriate. RunUnitTests is intended to be called from a shell script build phase in a unit test bundle target. It expects certain environment variables to be configured from Xcode project build settings; these environment variables are described below. When called from a shell script build phase, RunUnitTests will only run tests on build, not on install or any other build action. See xcodebuild(1) for more information on build actions. If no host application is specified in the TEST_HOST environment variable, RunUnitTests will use the extension of the test bundle (as speci- fied by the WRAPPER_EXTENSION environment variable) to determine whether to use CPlusTestRig(1) or otest(1) to load and run the tests in the test bundle, for extensions "cptest" and "octest" respectively. If a host application is specified, RunUnitTests will execute the application directly and inject the test bundle into the application, and pass arguments to the application to cause its tests to be run based on the extension of the test bundle. In either case, if additional test arguments are specified in the OTHER_TEST_FLAGS environment variable, these will be passed to the test rig or to the application being tested in an appropriate fashion. If RunUnitTests is not run from a shell script build phase, unless otherwise specified it will use the current working directory as BUILT_PRODUCTS_DIR and assume "build" is the current build action. ENVIRONMENT
ACTION The current build action. Tests are only run for "build" builds, not "install" or other builds. Defaults to "build" if unspecified. ARCHS (Optional) The architectures the tests have been built for. Defaults to the result of arch(1) if not specified. CURRENT_ARCH (Optional) The currently-selected Active Architecture. Defaults to the result of arch(1) if not specified. DEVELOPER_DIR The Xcode folder, e.g. "/Developer". Defaults to "/Developer" if unspecified. BUILT_PRODUCTS_DIR The directory containing built products; when tests are run, this is specified as DYLD_LIBRARY_PATH and DYLD_FRAME- WORK_PATH. Defaults to the current working directory if unspecified. GCC_ENABLE_OBJC_GC (Optional) Whether the test bundle has been built with Objective-C garbage collection support; used to determine whether to run the test bundle with garbage collection enabled or disabled. Possible values are unsupported, supported, and required. Defaults to unsupported if unspecified. When set to supported, RunUnitTests will run the tests for all appropriate architectures once with Objective-C garbage collection enabled, and again with Objective-C garbage collection disabled, under the assumption that dual-mode code (that is, code that can be used both with and without Objective-C garbage collection) should be tested in both modes. NATIVE_ARCH_ACTUAL (Optional) The native architecture of the hardware running tests; used to determine the architectures of tests that can be run. For example, ppc64 hardware can run tests for ppc and ppc64 while i386 hardware can run tests for i386 and ppc. Defaults to the result of arch(1) if not specified. ONLY_ACTIVE_ARCH (Optional) If set to YES, only the current Active Architecture as specified by CURRENT_ARCH will be tested, regardless of the value of ARCHS. Defaults to NO if unspecified. OTHER_TEST_FLAGS (Optional) Additional arguments to pass to the test rig or application under test. If being passed to a test rig, these arguments are passed prior to the path of the test bundle to load; for an application, these are its final arguments. PRODUCT_NAME The name (with no extension) of the product generated by the unit test bundle target. TEST_HOST (Optional) The full path to an executable into which to "inject" the specified unit test bundle. For an application, this must be the full path to the application within its wrapper. Do not set this for frameworks or libraries. TEST_RIG (Optional) The full path to an executable to use as a test rig instead of either CPlusTestRig(1) or otest(1). The exe- cutable must take a path to a test bundle as its final argument. Its DYLD_FRAMEWORK_PATH and DYLD_LIBRARY_PATH will be configured to point to the BUILT_PRODUCTS_DIR prior to execution. Do not set this if you are using one of the default test rigs. VALID_ARCHS (Optional) The architectures for which it is valid to build and run tests, which is normally a superset of the architec- tures for which the tests are actually built. Defaults to the result of arch(1) if not specified. WRAPPER_EXTENSION The extension of the product generated by the unit test bundle target. RunUnitTests will use this to infer the appropri- ate test rig to use. For "cptest" it will use CPlusTestRig(1). For "octest" it will use otest(1). For anything else, it will return an error unless a TEST_RIG is also specified. FILES
/Developer/Tools/RunUnitTests SEE ALSO
arch(1), CPlusTestRig(1), otest(1), xcodebuild(1) Mac OS X June 2, 2019 Mac OS X
All times are GMT -4. The time now is 09:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy