- 论坛徽章:
- 0
|
/*
webmin是一款Unix/Linux下基于web下的服务器管理软件,让我们能通过她轻松的配置服务器
现把安装过程贴上来与大家共勉。在此,非常感谢webmin为我们提供那么好的软件。
如有需要,请到http://www.Webmin.com下载。
下载后把Webmin.tar.gz拷贝到/usr/local/apache/cgi-bin/(就是apache的cgi目录)
前提:要安装好apache哦
*/
[root@Linuxgui cgi-bin]#gunzip webmin.tar.gz
[root@Linuxgui cgi-bin]#tar -xvf webmin.tar
/*解压后我得到了一个叫webmin-1.210的文件夹,我把他改名成webmin*/
[root@Linuxgui cgi-bin]#cd webmin
[root@Linuxgui webmin]# ./setup.sh
***********************************************************************
* Welcome to the Webmin setup script, version 1.210 *
***********************************************************************
Webmin is a web-based interface that allows Unix-like operating
systems and common Unix services to be easily administered.
Installing Webmin in /usr/local/apache/cgi-bin/webmin ...
***********************************************************************
Webmin uses separate directories for configuration files and log files.
Unless you want to run multiple versions of Webmin at the same time
you can just accept the defaults.
/*下面输入config文件的目录(默认/etc/webmin),如不想修改按回车继续*/
Config file directory [/etc/webmin]:
/*下面输入Log文件的目录(默认/var/webmin),如不想修改按回车继续*/
Log file directory [/var/webmin]:
***********************************************************************
Webmin is written entirely in Perl. Please enter the full path to the
Perl 5 interpreter on your system.
/*安装webmin要先安装perl,如果没有安装,先退出安装在说了,输入perl的安装目录*/
Full path to perl (default /usr/bin/perl):
Testing Perl ...
Perl seems to be installed ok
***********************************************************************
Operating system name: Redhat Linux
Operating system version: 9
/*呵呵,这是我的系统版本号*/
***********************************************************************
Webmin uses its own password protected web server to provide access
to the administration programs. The setup script needs to know :
- What port to run the web server on. There must not be another
web server already using this port.
- The login name required to access the web server.
- The password required to access the web server.
- If the webserver should use SSL (if your system supports it).
- Whether to start webmin at boot time.
/*输入端口号,注意:输入的端口号一定不能是已经使用了的端口号,否则不能用,更加不能用80端口了,也许
读者觉得奇怪,为什么webmin不用80端口,原因是webmin要使用自己的端口^_^
我使用的是810,呵呵。
*/
Web server port (default 10000): 810
/*输入用户名,如果按回车那么用户名就是admin,我就懒了。*/
Login name (default admin):
Login password:
Password again:
The Perl SSLeay library is not installed. SSL not available.
/*呵呵,输入y和n都得,不过,如果输入n的话,每次启动都要手工哦,为了安全起见建议输入n*/
Start Webmin at boot time (y/n): y
***********************************************************************
Creating web server config files..
..done
Creating access control file..
..done
Inserting path to perl into scripts..
..done
Creating start and stop scripts..
..done
Copying config files..
..done
Configuring Webmin to start at boot time..
Created init script /etc/rc.d/init.d/webmin
..done
Creating uninstall script /etc/webmin/uninstall.sh ..
..done
Changing ownership and permissions ..
..done
Running postinstall scripts ..
..done
Attempting to start Webmin mini web server..
Starting Webmin server in /usr/local/apache/cgi-bin/webmin
..done
***********************************************************************
Webmin has been installed and started successfully. Use your web
browser to go to
http://Linuxgui:810/
and login with the name and password you entered previously.
/*我用的IP是:192.168.1.50
安装好后,在浏览器中输入http://YourIp:810/
好了,看见没有,你,你,你,没有启动apache??????对不起我忘记了,我的apache是2.0.54版的
好了,没吃饭呢(只吃了点零食),吃饭先了,88
*/ |
|