ubuntu重启后怎么没有网络了

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu重启后怎么没有网络了相关的知识,希望对你有一定的参考价值。

参考技术A 你好

ubuntu重启网络跟Red Hat不同
ubuntu输入下命令:
sudo /etc/init.d/networking restart

ubuntu16.04 springboot 断电后重启:程序自动重启

昨天客户现场说我的程序web页面404了。

我的答复是网络不通;

今天上午客户反映网络是通的,但是程序访问不了 

客户把部署的服务器ip弄错了,并且服务器断电重启了。我的程序没有重启。

nginx  springboot  程序没有自动重启【我现场重启,需要配置程序随着服务器开机自动启动】

 

nginx 配置

1. 配置nginx 自动启动

vim /usr/lib/systemd/system/nginx.service
[Unit]
Description=nginx - high performance web server
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
[Install]
WantedBy=multi-user.target
2. 设置为自启动 systemctl enable nginx.service

 

springboot 配置 

1. 创建启动脚本,并授权

sudo vim /etc/init.d/fw.sh

#!/bin/sh
sudo -u sense  java -jar /home/sense /fw/fwapp-1.2.jar > /var/log/fwapp.log  2>&1 &

说明: sudo -u sense 表示我按照sense用户执行(我的文件存储在{user.dir} 即就是home/sense)

授权
chmod 755 /etc/init.d/fw.sh

2. 添加到/etc/init.d/fw.sh  rc.local中

sudo vim /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/bin/sh /etc/init.d/fw.sh

exit 0

3.  /etc/rc.local 添加到/etc/profile 中,开机重启,加载此文件;加载 /etc/rc.local,执行/bin/sh /etc/init.d/fw.sh

sudo vim /etc/profile

 /etc/rc.local 

执行 source /etc/profile 

4. sudo reboot  重启。
netstat -tunlp 查看nginx 端口 springboot 端口。nginx 和springboot 都正常启动了。

终于世界和平了。周五了,注意身体。

 

以上是关于ubuntu重启后怎么没有网络了的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu16.04 springboot 断电后重启:程序自动重启

ubuntu重启后桌面啥都没有了

安装ubuntu双系统重启后没有grub2界面

解决方法:Ubuntu 22.04网络无法连接,没有网络图标

解决方法:Ubuntu 22.04网络无法连接,没有网络图标

解决方法:Ubuntu 22.04网络无法连接,没有网络图标