多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
If you insist running as root, then set theenvironment variable RUN_AS_USER=root before running this script. ### 背景 今天笔者在配置Nexus的时输入命令 ./nexus start后出现“ If you insist running as root, then set thee nvironment variable RUN_AS_USER=root before running this script. ”的警告信息。大概的意思是:如果你想使用root用户,那么在运行开始脚本之前应该设置环境变量”RUN_AS_USER=root"。 ### 解决方法 关于这个问题共有两种解决方法,一种是临时解决,一种是永久的解决。 ### 临时方法 输入:export RUN_AS_USER=root 后在执行 ./nexus start 运行结果如下图: ![](https://box.kancloud.cn/2016-03-22_56f10ade2a147.jpg) ### 永久方法 在系统用配置即可,输入:vi /etc/profile向其中加入exportRUN_AS_USER=root,修改后保存退出,如下图 ![](https://box.kancloud.cn/2016-03-22_56f10ae1c43f5.jpg) 修改完之后,先关闭nexus,再启动,如下图 ![](https://box.kancloud.cn/2016-03-22_56f10ae1dd057.jpg) 简简单单的几步就OK啦