Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
(none)
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Mohammed Alshammari  
View profile  
 More options Dec 12 2000, 4:30 pm
Newsgroups: uvic.mlist.sun-managers
From: shamm...@isu.net.sa (Mohammed Alshammari)
Date: 12 Dec 2000 13:28:57 -0800
Local: Tues, Dec 12 2000 4:28 pm
Subject: (none)
Folks ,

Some of my users are email only users on Solaris box , I use /ect/passwd
to manage users account and give them /bin/false as shell . They access
the server using pop clients .
My problem is : the number of users be come large and some of them using
very week passwords , this a security hassle and I don't like . I'd wont
to get rid of mail only users nad remove them from /etc/passwd   and put
them somewhere else as a security measure so If the users have a weak
password it'll only effect their mail access and the weakness couldn't
be exploited to gain access to the server, so is there any way to
separate the email users from others ?, dose IMAP help with that ? Is
there any tool will help me ?

TIA and IWS
--
_______________________________________________
sunmanagers mailing list
sunmanag...@sunmanagers.org
http://www.sunmanagers.org/mailman/listinfo/sunmanagers


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
German, Vinnie  
View profile  
 More options Dec 18 2000, 9:21 am
Newsgroups: uvic.mlist.sun-managers
From: VGer...@Nomurany.Com (German, Vinnie)
Date: 18 Dec 2000 06:21:27 -0800
Local: Mon, Dec 18 2000 9:21 am
Subject: (none)
Hello,

I have a 420R loaded with Solaris 8 and running Raid Manager 6.22 and I'll
be loading
Veritas VM 3.1 on it BUT later I will have to change I.P. Address as well as
the hostname
on this machine.  

I believe there are somethings I will need to do if I'm to change the
hostname for instance
there is a file called "/etc/vx/volboot" which hold the name of machine
which I need to change
but I'm not sure if there are other things which will need to be also
change.  And how about
Raid Manager 6.22 does it really matter if I'm to make changes to
i.p/hostname?

Thanks in advance for your cooperation,
Vinnie
_______________________________________________
sunmanagers mailing list
sunmanag...@sunmanagers.org
http://www.sunmanagers.org/mailman/listinfo/sunmanagers


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Julie Xu  
View profile  
 More options Dec 18 2000, 10:19 pm
Newsgroups: uvic.mlist.sun-managers
From: j...@uws.edu.au (Julie Xu)
Date: 18 Dec 2000 19:17:59 -0800
Local: Mon, Dec 18 2000 10:17 pm
Subject: (none)
Dear all,

Great thanks for all the help. I find this list give the most
quick and helpful answer. Again, great thanks for you all.

Some passages I have taken from these e-mails for the summary are:
1.
********************
First, you put the startup script, usually dhcpd, in /etc/init.d directory.

Then create a link to /etc/rc2.d :

        cd /etc/rc2.d
        ln -s ../init.d/dhcpd S99dhcpd

See the README file in either /etc/rc2.d or /etc/init.d ... it's
a pretty strange system, but it's great once you get use to it.
Basically the startup scripts are in /etc/init.d, they are linked
to /etc/rc[0-3].d, and the links start with S if they start the
package, or K if they kill it. The sequence number (eg. S99)
specifies the order they are started or killed. Use a high one
to ensure earlier required things are already started.
*******************
2.
*******************
the script in /etc/inet.d should something like:
case "$1" in
'start')
        [ -f $DHCPD ] && {
                $DHCPD $IF &
        }
        ;;

'stop')
        if [ "X$DhcpdPid" != "X" ]
        then
                /bin/kill $DhcpdPid
        fi
        ;;

'restart')
        if [ "X$DhcpdPid" != "X" ]
        then
                /bin/kill $DhcpdPid
                [ -f $DHCPD ] && {
                }
        fi
        ;;
****************
3.
****************
Solaris normal init state ( working mode ) is 3 .
that means that all rc scripts in /etc/rc2.d and /etc/rc3.d are run on boot
and after reboot
Solaris shutdown states are 0 or 6 ( 0 - being shutdwon and 6 being reboot )

runscripts are actually links to scripts located in /etc/init.d
those scripts take an arg called "start" or "stop"
in order to start a script you need to create a link from the run script in
/etc/init.d to /etc/rc2.d or /etc/rc3.d with a SXXscriptname
the S tells init to send a start arg to the script and the XX are numbers
that tells init what to run first ( so for example if you want to run a dhcp
server it should have a greater number than the intesvc so that network
services will start first )
*******************
4.
*******************
                You must have a script to start DHCP server in
/etc/init.d something like "dhcp" that works as follow "dhcp start" to
start de daemmon and "dhcp stop" to stop the service.

You should make a script to do that an put it in directory "rc3.d" in
order to start it in run level 3.
********************
5.
********************
The installation should have linked /etc/init.d/dhcp into several of the
/etc/rc*.d directories.

Here are the list of (hard) links installed on my dhcp server.

/etc/init.d/dhcp
/etc/rc0.d/K34dhcp
/etc/rc1.d/K34dhcp
/etc/rc2.d/K34dhcp
/etc/rc3.d/S34dhcp
********************
6.
********************
alright.  it's done but still will not start at boot
time. determine what "runlevel" you want dhcpd to run
in and what "runlevel" you want it to be killed or not
run in.  for example:

runlevel 3      start
runlevel 2      stop
runlevel 1      stop
runlevel 0      stop
runlevel S      stop

to implement the above scenario, create symbolic links
as follows:
ln -s /etc/init.d/dhcpd /etc/rc3.d/S99dhcpd
ln -s /etc/init.d/dhcpd /etc/rc2.d/K99dhcpd
ln -s /etc/init.d/dhcpd /etc/rc1.d/K99dhcpd
ln -s /etc/init.d/dhcpd /etc/rc0.d/K99dhcpd
ln -s /etc/init.d/dhcpd /etc/rcS.d/K99dhcpd

for example, if you change runlevels from startup to 3
(probably your default), it will run all the S*
scripts in rc.1 rc.2 rc.3 etc. with the "start"
argement and the K* scripts with the "stop argument".
this architecture means you can simply create and
maintain one original script in /etc/init.d and create
symbolic links.
*************************

Marry Christmas and Happy new year

Julie Xu

Unix/Network administrator
Information Technology and Communication
University of Western Sydney, Macarthur
Campbelltown NSW 2560

Phone: 61 02 46203098
email: j...@uws.edu.au

_______________________________________________
sunmanagers mailing list
sunmanag...@sunmanagers.org
http://www.sunmanagers.org/mailman/listinfo/sunmanagers


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »