Error: svcs: Pattern 'pooladm.conf' doesn't match any instances


 
Thread Tools Search this Thread
Operating Systems Solaris Error: svcs: Pattern 'pooladm.conf' doesn't match any instances
# 1  
Old 05-23-2011
Error: svcs: Pattern 'pooladm.conf' doesn't match any instances

Hi, I got the following errors during zfs resource pool configuration. Please help. Thanks.
Code:
# svcs *pool*
svcs: Pattern 'pooladm.conf' doesn't match any instances
STATE          STIME    FMRI
# svcadm enable system/pools:default
# svcs *pool*
svcs: Pattern 'pooladm.conf' doesn't match any instances
STATE          STIME    FMRI
# pooladm -e
# svcs *pool*
svcs: Pattern 'pooladm.conf' doesn't match any instances
STATE          STIME    FMRI

# 2  
Old 05-23-2011
I think you want:
Code:
svcs -xv system/pools:default

This User Gave Thanks to bartus11 For This Post:
# 3  
Old 05-23-2011
The command 'svcs *pool*' is working fine on another identical server here.

Code:
# svcs pools
STATE          STIME    FMRI
online         14:26:37 svc:/system/pools:default
# svcs -x pools
svc:/system/pools:default (resource pools framework)
 State: online since Mon May 23 14:26:37 2011
   See: libpool(3LIB)
   See: pooladm(1M)
   See: poolbind(1M)
   See: poolcfg(1M)
   See: poolstat(1M)
   See: /etc/svc/volatile/system-pools:default.log
   See: /var/svc/log/system-pools:default.log
Impact: None.
 
# svcs pools
STATE          STIME    FMRI
online         14:26:37 svc:/system/pools:default

The pools service seems running fine, right?

Thanks.
# 4  
Old 05-23-2011
It is svcs pools, not svcs *pool*. There is huge difference here. And yes, the service is running OK.
# 5  
Old 05-23-2011
Quote:
Originally Posted by aixlover
Hi, I got the following errors during zfs resource pool configuration. Please help. Thanks.
Code:
# svcs *pool*
svcs: Pattern 'pooladm.conf' doesn't match any instances
STATE          STIME    FMRI

The shell is expanding *pool* because you have a file named pooladm.conf in the current directory. To avoid that, just like with any other command, simply quote the argument:
Code:
# svcs "*pool*"

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Pooladm.conf : No such file or directory

hi, i am trying to run : # poolcfg -c 'create pset dbPset_set(uint pset.min=4;uint pset.max=4)' and i got this error message: poolcfg: cannot load configuration from /etc/pooladm.conf: No such file or directory These two services are enable: svc:/system/pools:default... (2 Replies)
Discussion started by: lythuongkiet
2 Replies

2. Solaris

Svcs: failed to iterate over instances: server has insufficient resources

Hi community, one of my zone is having issue and while i issue svs -a, i am getting below error "svcs: failed to iterate over instances: server has insufficient resources" none on the services are working including ssh/telnet. please help me to fix this issue thanks & Regards,... (1 Reply)
Discussion started by: bentech4u
1 Replies

3. Shell Programming and Scripting

Rearrange or replace only the second line after pattern match or pattern match

Im using the command below , but thats not the output that i want. it only prints the odd and even numbers. awk '{if(NR%2){print $0 > "1"}else{print $0 > "2"}}' Im hoping for something like this file1: Text hi this is just a test text1 text2 text3 text4 text5 text6 Text hi... (2 Replies)
Discussion started by: invinzin21
2 Replies

4. UNIX for Dummies Questions & Answers

Match Pattern after certain pattern and Print words next to Pattern

Hi experts , im new to Unix,AWK ,and im just not able to get this right. I need to match for some patterns if it matches I need to print the next few words to it.. I have only three such conditions to match… But I need to print only those words that comes after satisfying the first condition..... (2 Replies)
Discussion started by: 100bees
2 Replies

5. Shell Programming and Scripting

Need one liner to search pattern and print everything expect 6 lines from where pattern match made

i need to search for a pattern from a big file and print everything expect the next 6 lines from where the pattern match was made. (8 Replies)
Discussion started by: chidori
8 Replies

6. Shell Programming and Scripting

print word after pattern match in two instances

i have a file like below. how can i printout the digits followed by the pattern -bwout and -bwin. say i run the script by entering line number 145 (the fourth line), then the o/p should be like 5000000 1024000 8 test1 -ipprot erp -ppsout 500 -ppsin 500 -bwout 300000 -bwin 300000 -statsdevice... (7 Replies)
Discussion started by: sb245
7 Replies

7. Shell Programming and Scripting

Can sed replace every 2 instances it finds in a file? Pattern.

My goal is to make a script to find/replace the variable "PORT" with a unique number. Like the following <VirtualHost 174.120.36.236:PORT> ServerName architect.com.ph ServerAlias www.architect.com.ph DocumentRoot /home/architec/public_html ServerAdmin... (16 Replies)
Discussion started by: EXT3FSCK
16 Replies

8. Shell Programming and Scripting

Match first pattern first then extract second pattern match

My input file: <accession>Q91G55</accession> <name>043L_IIV6</name> <protein> <recommendedName> <location> <position position="294"/> </location> <fullName>Uncharacterized protein 043L</fullName> <accession>P18556</accession> <name>1106L_ASFB7</name> <protein> <recommendedName>... (5 Replies)
Discussion started by: patrick87
5 Replies

9. Shell Programming and Scripting

Grep with multiple instances of same pattern

Hi, This is my text file I'm trying to Grep. Apple Location Greenland Rdsds dsds fdfd ddsads http Received Return Immediately Received End My Grep command: grep only--matching 'Location.*Received' Because the keyword Received appears twice, the Grep command will stop at the last... (3 Replies)
Discussion started by: spywarebox
3 Replies

10. Shell Programming and Scripting

Grep with multiple instances of same pattern

Hi, This is my text file I'm trying to Grep. Apple Location Greenland Rdsds dsds fdfd ddsads http Received Return Immediately Received End My Grep command: grep only--matching 'Location.*Received' e. Because the keyword Received appears twice, the Grep command will stop at the last... (0 Replies)
Discussion started by: spywarebox
0 Replies
Login or Register to Ask a Question