让Windows可以远程访问Linux系统桌面 http://jingyan.baidu.com/article/d8072ac47b810eec95cefde8.html linux系统下,11款常见远程桌面控… http://blog.csdn.net/guo8113/article/detai ...
分类:
系统相关 时间:
2017-09-04 13:13:23
阅读次数:
166
# /etc/init.d/mysql stop 或者 service mysqld stop# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &# mysql -u root mysqlmysql> UPDATE us ...
分类:
数据库 时间:
2017-09-03 21:03:31
阅读次数:
187
mysql -u root -p Aaa111222 grant all privileges on *.* to root@'%' identified by 'aaa111222; Quit lnmp restart mysql -u root -p Aaa111222 grant all pr ...
分类:
数据库 时间:
2017-09-03 10:09:04
阅读次数:
225
第一步,apt-get 安装, 安装完毕后Redis会自动启动 第二步、检查Redis系统进程 通过启动命令检查Redis服务器状态 第三步、修改配置文件redis.conf(访问密码,缓存策略等) 默认情况下,Redis服务器不允许远程访问,只允许本机访问,所以我们需要设置打开远程访问的功能。 打 ...
分类:
其他好文 时间:
2017-09-02 23:20:23
阅读次数:
202
作用:windows远程访问linux方法(非mstsc) 安装:①挂载linux的iso ②更改/etc/yum.repos.d/中repo文件的baseurl为本地(file:///mnt) ③yum install samba vim /etc/samba/smb.conf 文件末尾追加: : ...
分类:
其他好文 时间:
2017-08-31 19:14:34
阅读次数:
119
linux装完MySQL后想用navcat连接数据库 : 1、登录到MySQL中,为root进行远程访问的授权,执行下面的命令: mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root"; mysql> flush pri ...
分类:
数据库 时间:
2017-08-24 12:34:52
阅读次数:
166
环境 Ubuntu-14.0 mysql-5.5 1.修改mysql 配置文件 /etc/mysql/my.cnf, 屏蔽掉下面的这行内容 bind-address = 127.0.0.1 2.登录mysql 依次执行命令 mysql -uroot -prootroot GRANT ALL PRIV ...
分类:
数据库 时间:
2017-08-23 19:13:06
阅读次数:
181
MySQL本身默认设置是不对外开放访问功能的,该post记录在Ubuntu下开启Mysql远程访问的方法 ...
分类:
数据库 时间:
2017-08-22 12:28:14
阅读次数:
179
linux装完MySQL后想用navcat连接数据库 : 1、登录到MySQL中,为root进行远程访问的授权,执行下面的命令: mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root"; mysql> flush pri ...
分类:
数据库 时间:
2017-08-22 10:59:01
阅读次数:
391
1. 3306端口是不是没有打开? 使用nestat命令查看3306端口状态: tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 从结果可以看出3306端口只是在IP 127.0.0.1上监听,所以拒绝了其他IP的访问。 解决方法:修改/etc/mysql/my.cnf ...
分类:
数据库 时间:
2017-08-22 01:45:07
阅读次数:
248