一、引言
平台:阿里云服务器平台
系统:Ubuntu 16.04.1 LTS
工具:xshell xftp navicat
近段时间需要做一个服务器的迁移,顺便也更新了一下ubuntu的版本,中间也遇到了一些小问题,主要如下:
1.将tomcat设置为service并让tomcat开机自启
2.无法远程连接MysqL
问题1的基本思路是修改tomcat/bin/catalina.sh文件并重命名放置到/etc/init.d/目录下,最后用chkconfig配制
问题2的基本思路是注释掉bind-address(由于MysqL版本与之前不同导致我无法找到)设置远程访问与设置账号权限
首先需要更新库
apt-get update
在线安装MysqL
apt-get install MysqL-server apt-get install MysqL-client apt-get install libMysqLclient-dev
测试MysqL
MysqL –V service MysqL start service MysqL stop service MysqL status service MysqL restart
允许远程连接数据库。编辑etc/MysqL/MysqL.conf.d/MysqLd.cnf,将bind-address注释掉。(不同版本目录可能不同,也可能在/etc/MysqL/my.cnf中)
#bind-address = 127.0.0.1
设置远程连接账号及密码,示例账号为root,密码为123456。
grant all on *.* to root@'%' identified by '123456' with grant option; flush privileges;
重启MysqL或者重启服务器
service MysqL restart shutdown -r now
参考:
http://jingyan.baidu.com/article/3065b3b6e0fad2becff8a419.html
http://blog.sina.com.cn/s/blog_484d87770102uxz6.html
http://jingyan.baidu.com/article/425e69e6bbc6c7be14fc1640.html
http://jingyan.baidu.com/article/a948d6510888fa0a2ccd2e54.html
原文链接:https://www.f2er.com/ubuntu/354775.html