红联Linux门户
Linux帮助

linux服务器开机启动服务

发布时间:2015-11-13 15:14:08来源:linux网站作者:盘古黄一鸣

在终端输入setup命令

linux服务器开机启动服务

选系统服务vncserver已选择(如下图),但重启服务器,vncserver并没有启动

linux服务器开机启动服务

在终端输入chkconfig –list vncserver查看如下

在终端输入chkconfig –leve 123456 vncserver on开启所有等级,然后重启服务器试下可不可以开机启动vncserver服务

服务器重启后,liunx系统已经进入登陆界面,从windows下用vnc连接,出现连接失败,证明服务还是没有随机启动。

linux服务器开机启动服务

进入图形界面再试,还是连接失败。

在linux的终端输入vncserver启动服务,windows的VNC正常连接.

在终端输入echo /opt/lampp/lampp >> /etc/rc.d/rc.loca

把web服务加入到启动队列测试能否启动===========测试结果失败,web服务没有启动

在终端输入echo /opt/lampp/lampp start >> /etc/rc.d/rc.loca=====重启后web服务启动

证明把要启动的应用程序写入/etc/rc.d/rc.loca里面是正确的做法。

在/etc/rc.d/rc.loca里写入vncserver,

重启linux,启动linux时要输入密码和确认密码

在windows里用vnc登陆进入命令行的界面

弄了很久没办法进入时就是图形界面,但在VNC上的终端输入/root/.vnc/xstartup就出现图形界面。

虚拟主机配置

在/opt/lampp/etc/httpd.conf文件增加以下谁名就行了

NameVirtualHost *:80 //这句一定要记得加,否则出错

<VirtualHost *:80>

DocumentRoot /opt/lampp/htdocs

ServerName emtit.com

</VirtualHost>

要用emtit.com就可以在内网访问要在路由器里把DNS解释指向服务器。


ubuntu下管理开机自启动服务:http://www.linuxdiyf.com/linux/14125.html

设置Derby做为Linux/Windows自启动服务方式运行:http://www.linuxdiyf.com/linux/10167.html

Linux下面开起启动服务命令(chkconfig、ntsysv):http://www.linuxdiyf.com/linux/5396.html

如何在Ubuntu中管理开机启动应用:http://www.linuxdiyf.com/linux/13267.html

RHEL/CentOS 7中配置PXE网络启动服务器:http://www.linuxdiyf.com/linux/10161.html