Blogs1 - 9 of 9 recent posts for tag:"startup script"
23
Jun
2009
Bash startup script in OSX  

12 days ago by Ted Heich

If you’re coming from Linux, and you’re looking for .bashrc in OSX, you’re not gonna find it–at the time I wrote this, the OSX is version 10.5.7 (Leopard)–you can find the bash initialization files in 2 places; in ~/.profile and /etc/profile. ~/.profile-the tilde (~) is a shortcut to /Users/yourlogi ...

kindawannadothat - kindawannadothat.com · 2 references

01
Jun
2009
İstemcilerdeki Yabancı hesaplardan Kurtulun…  

34 days ago by gokhansenyuz

Active Directory domain ortamında zaman zaman gerekliliklerden dolayı ağdaki kullanıcılara kullandıkları makineler zerinde local Administrator hakkı vermeniz gerekebilir. Bazı durumlarda bu iş o kadar byr ki bir bakarsınız ağınızdaki kullanıcılar local admin yetkileriyle bilgisayarlarındaki her şeye ...

Gökhan Şenyüz - gokhansenyuz.com

25
Apr
2009
Make svnserve load on startup (Ubuntu)  

71 days ago by pedro

Make svnserve load on startup: First create a new script on init.d vi /etc /init.d / svnserve The script’s contents: #!/bin/bash ### BEGIN INIT INFO # Provides: svnserve # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs $network $syslog # Default-Start: 2 ...

The stuff I do... - blog.melimato.com · 1 reference

24
Apr
2009
CVS server set up guide (reprint)  

73 days ago by very4.com

CVS server set up guide 1. First of all, create the group and for CVS users: #groupadd rn cvsrn #useradd rn cvsroot -g cvsrn #passwd rn cvsrootrn OK, the user has established a good, cvsroot operation is that we do use CVS. 2. Modify configuration files: #more rn /etc/services | grep cvspserverrn To ...

very4.com - very4.com

20
Mar
2009
fastcgi init script on centos  

107 days ago by CodeWeblog.com

#!/bin/bash # # fcgi Startup script for fcgi # # processname: fcgi # Source function library . /etc/rc.d/init.d/functions FCGI_DAEMON="/usr/local/bin/spawn- fcgi" FCGI_PROGRAM="/usr/local/bin/php-cgi" FCGI_SOCKET="/tmp/php-fastcgi.sock" FCGI_PIDFILE="/var/run/spawn- fcgi. pid" PHP_FCGI_CHILDREN=4 PH ...

CodeWeblog.com - codeweblog.com · Rank: 24,045 · 10 references

fastcgi init script on centos enhanced version  

107 days ago by CodeWeblog.com

#!/bin/bash # # fcgi Startup script for fcgi # # processname: fcgi # Source function library . /etc/rc.d/init.d/functions ## ABSOLUTE path to the spawn- fcgi binary SPAWNFCGI="/opt/app/ lighttpd/bin/spawn- fcgi" ## ABSOLUTE path to the PHP binary FCGIPROGRAM="/opt/app/php-cgi/bin/php-cgi" ## TCP por ...

CodeWeblog.com - codeweblog.com · Rank: 24,045 · 10 references

26
Feb
2009
Service does not support chkconfig error  

129 days ago by Lethe

Hello all, as you know in Red Hat or derived distros to add a particular service to a runlevel you can use the chkconfig command with a syntax similar to the following : chkconfig –level 2345 This works like a charm when you’re adding a chkconfig "ready" script but what to do when you wrote ...

Experiences and adventures ... - blog.ccielogs.com

17
Feb
2009
Creating startup script in Ubuntu  

138 days ago by Josh Hill

Create the script /etc/init.d/local Run the following: update-rc.d -f my_script start 99 2 3 4 5 . where - start is the argument given to the script (start, stop). The script doesn’t need to use this. - 99 is the start order of the script (1 = first one, 99= last one) - 2 3 4 5 are the runlevels to ...

Nerd Gene - nerdgene.com

29
Jan
2009
Small mistakes we do while coding -II  

157 days ago by Venkat Vangalapudi

Java Script Some times it is needed to do some client side functionality through java script dynamically.To generate dynamic java scripts, we use ‘ Page.RegisterStartupScript’ .If the dynamic javascript code is in the Aspx page then may be no problem, however if it is in the user control and we are ...

.Net Technology Quest - vangalvenkat.blogspot.com