ChinaUnix.net
相关文章推荐:

service apache does not support chkconfig

[root@firewall init.d]# chkconfig --level 35 httpd on service httpd does not support chkconfig 一个服务如何才能做到支持chkconfig...?

by sunyeait - Linux论坛 - 2003-07-01 10:06:10 阅读(8675) 回复(5)

相关讨论

[root@firewall init.d]# chkconfig --level 35 httpd on service httpd does not support chkconfig 一个服务如何才能做到支持chkconfig...?

by sunyeait - 服务器应用 - 2003-07-01 10:06:10 阅读(3998) 回复(5)

因为这2天要安装nginx服务器,其nginx没有提供启动脚本,就想自己写一个启动脚本,但是再写完脚本的时候,想使用service启动该服务, nginx启动脚本如下: #!/bin/bash # Startup script for the nginx Web Server # description: nginx is a World Wide Web server. It is used to serve # HTML files and CGI. # processname: nginx # pidfile: /usr/local/nginx/logs/nginx.pid # config: /usr/local/nginx/conf/nginx....

by huifeideluotuo - Linux文档专区 - 2008-04-24 23:35:45 阅读(1155) 回复(0)

安装步骤 groupadd -r clamav useradd -r -g clamav -d /var/amavis -m -s /bin/false -c "Clam AntiVirus" clamav cd /usr/local/src wget http://downloads.sourceforge.net/clamav/clamav-0.95.3.tar.gz tar xzf clamav-0.95.3.tar.gz chown -R root.root clamav-0.95.3 cd clamav-0.95.3 ./configure make make install ln -s /usr/local/etc/clamd.conf /etc/clamd.conf vi /etc/clamd.conf # Example LogSyslog yes Loca...

by webdna - 服务器应用 - 2010-02-20 18:04:35 阅读(2935) 回复(3)

原文件如下:[code] 1 #!/bin/sh 2 # 3 # chkconfig: 2345 1521 5 4 # description: start oracle listener service 5 6 start() { 7 lsnrctl start 8 } 9 10 stop() { 11 lsnrctl stop 12 } 13 14 restart() { 15 stop 16 start 17 } 18 19 case "$1" in 20 start) 21 start 22 ;; 23 stop) 24 stop 25 ;; 26 res...

by tyrande1982 - Shell - 2012-03-13 19:26:16 阅读(6258) 回复(8)

does MySQL support schema?

by SeeaMonster - MySQL - 2005-07-12 11:15:22 阅读(912) 回复(0)

does informix support schema?

by SeeaMonster - Informix - 2005-07-12 11:55:33 阅读(1411) 回复(3)

service 能立即启动关闭服务 xinetd 好象是与安全相关的 chkconfig 和 windows下的msconfig有点像 能够控制下次重启之后启动的服务 我知道以上认识很粗浅 请大家补充指正

by kdsfan - Linux新手园地 - 2012-01-02 19:05:52 阅读(1109) 回复(0)

如 ??困惑 chkconfig vsftpd on service vsftpd start

by channel96 - Linux新手园地 - 2008-07-17 10:58:38 阅读(1506) 回复(8)

安装一个module时给这个提示,是不是需要重新编译内核并打开CONFIG_MODULES选项才行? 不重新编译内核可以吗?

by ttyfox - 内核源码 - 2009-12-30 16:28:32 阅读(2186) 回复(2)

前面忘记说了,运行过程中还出现过上面那个title的错误.... 官方的说法是 MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. 解决办法是: UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd') WHERE User = 'usrname'; update后还有重启下mysql服务,在运行程序就可以了 本文来自ChinaUnix博客,如果查看原...

by ubuntuer - MySQL文档中心 - 2009-08-28 15:18:38 阅读(1493) 回复(0)