第一种方法:使用“ntsysv”命令启动图形化服务配置程序,在vncserver服务前加上星号,点击确定,配置完成。
第二种方法:使用“chkconfig”在命令行模式下进行 *** 作,命令使用如下(预知chkconfig详细使用方法请自助式man一下)
[root@www.linuxidc.com ~]# chkconfig vncserver on
[root@www.linuxidc.com ~]# chkconfig --list vncserver
vncserver 0:off 1:off 2:on3:on4:on5:on6:off
首先在/usr/lib/systemd/system 下编写自己的系统服务。vi xxxxx-xxxxx.service
具体含义请参考 http://blog.csdn.net/ch21st/article/details/51383877
服务编写好之后使用 systemctl start xxxxx-xxxxx.service 让服务可以开机自启
可以采用 systemctl start xxxxx-xxxxx.service
systemctl stop xxxxx-xxxxx.service 测试服务是否能正确执行。
报错可以用 systemctl status xxxxx-xxxxx.service 查看服务状态。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)