使用Linux Debian 作为参考
apt-get update
apt-get install xrdp
apt-get install raspberrypi-ui-mods xinit xserver-xorg
Linux用户可以使用RDP客户端,例如Remmina或Vinagre。
Windows 下可以使用 mstsc
使用Linux Debian 作为参考
apt-get update
apt-get install xrdp
apt-get install raspberrypi-ui-mods xinit xserver-xorg
Linux用户可以使用RDP客户端,例如Remmina或Vinagre。
Windows 下可以使用 mstsc
https://tomchen.github.io/symmetric-nat-test/
查看当前的网络类型
===============================
https://ipw.cn/
https://ip.taobao.com/ipSearch
查看是否支持IPv6
https://www.test-ipv6.com/index.html.zh_CN
https://test-ipv6.com/
https://ipv6test.wcode.net/
IPV4
https://myip.ipip.net,
https://ddns.oray.com/checkip,
https://ip.3322.net,
https://v4.yinghualuo.cn/bejson”,
IPV6
https://speed.neu6.edu.cn/getIP.php,
https://v6.ident.me,
https://6.ipw.cn,
https://v6.yinghualuo.cn/bejson,
===============================
http://ip.taobao.com/outGetIpInfo?ip=43.2.1.3&accessKey=alibaba-inc
===============================
Debian开启和关闭Ipv6的方法
检查系统是否有加载ipv6内核
lsmod | grep ipv6
返回类似下面的数据,则表示加载了ipv6内核
1 2 3 4 5 6 |
|
检查是否有ipv6地址
1 2 3 |
|
临时关闭ipv6的命令
1 2 |
|
临时开启ipv6命令
1 2 |
|
永久关闭系统ipv6
1 2 3 4 5 6 7 8 |
|
或者编辑系统内核配置文件
1 2 3 4 |
|
永久开启系统的ipv6,把上面代码的1改为0即可。。。
查看系统ipv6状态命令
1 2 |
|
返回0表示启用,1则表示禁用ipv6
cesium
https://cesium.com/platform/cesiumjs/
http://cesium.xin/
==============================================
MySQL
https://downloads.mysql.com/archives/installer/
官方工具集 https://downloads.mysql.com/archives/
==============================================
忘记MySQL 密码
先关闭mysql服务,再带参数启动
./mysqld_safe –skip-grant-tables
进mysql命令行
mysql -uroot -p
执行更新
update mysql.user SET Password=PASSWORD(‘password123′) where USER=’root’;
update mysql.user set authentication_string=password(‘password123′) where user=’root’;
update mysql.user set grant_priv=’Y’ where user=’root’ and host=’%’;
grant all privileges on *.* to root@”%” identified by “Password123”;
grant all privileges on *.* to root@”127.0.0.1″ identified by “Password123” WITH GRANT OPTION;
select host,user,password,authentication_string from mysql.user;
flush privileges;
退出重启MySQL,密码已变更为password123
==============================================
PQSQL
https://www.postgresql.org/download/
==============================================
Microsoft® SQL Server® 2017 Express
https://www.microsoft.com/zh-CN/download/details.aspx?id=55994
官方管理工具 SQL Server Management Studio
https://docs.microsoft.com/zh-CN/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017
Yes, SQL Server 2008 R2 Express with Tools and SQL Server 2008 R2 Express with Advanced Services will allow 10GB databases as well.
SQL Server 2008 R2 Express is still limited to 1 CPU and 1 GB or RAM.
免费版有内存使用和数据库大小的限制, 10G数据库,1G内存,1CPU,
作为测试,要用那么多资源干啥??
==============================================
# 在Linux中安装SQLServer
https://learn.microsoft.com/zh-cn/sql/linux/quickstart-install-connect-docker
sql-server-management-studio
https://learn.microsoft.com/zh-cn/ssms/download-sql-server-management-studio-ssms#download-ssms
https://aka.ms/ssmsfullsetup
==============================================
Oracle Database XE , Free Oracle Database for Everyone
https://www.oracle.com/database/technologies/appdev/xe.html
Oracle SQL Developer
https://www.oracle.com/cn/tools/downloads/oracle-sql-developer-download.html
序号 | 版本 | 数据限制 | 内存限制 | 处理器限制 |
| | | | |
| | | | |
| | | | |
一台机器上只能安装一个 XE 实例, 最大数据库大小为 12 GB,可使用的最大内存是 2G
==============================================
管理工具
heidisql
https://www.heidisql.com/download.php
快速导出数据库结构
SmartSQL
https://gitee.com/izhaofu/SmartSQL
错误提示:ERROR 1273 (HY000): Unknown collation: ‘utf8mb4_0900_ai_ci’
是因为linux下MySQL版本不兼容导致的
我们需要做的是打开我们导出的的sql文件
• 把文件中的所有的utf8mb4_0900_ai_ci替换为utf8_general_ci
• 以及utf8mb4替换为utf8
最后再重新导入成功。
ALTER USER ‘sqluser’@’%’ IDENTIFIED WITH mysql_native_password BY ‘sqluser’;
FLUSH PRIVILEGES;
VSCode, 升级插件后运行java 提示要11版本之上,
But,作为老人, 咱只需要用java-8即可, 不想升级11, 咋整,
打开主站, 这里找插件
https://marketplace.visualstudio.com/
查找JAVA,
https://marketplace.visualstudio.com/items?itemName=redhat.java
找到Changelog,
https://marketplace.visualstudio.com/items/redhat.java/changelog
0.65.0 (July 22nd, 2020)
enhancement – Require Java 11 to run the extension. See #1524.
0.65.0 后即提示需要java-11了, 所以,找之前的版本,
找到下载连接,更高版本号
https://marketplace.visualstudio.com/_apis/public/gallery/publishers/redhat/vsextensions/java/0.64.1/vspackage
下载后为文件
redhat.java-0.64.1.vsix
复制到 VSCode 安装目录下, 运行CMD , Code.exe –install-extension redhat.java-0.64.1.vsix
插件扩展, 右上角选 install from vsix, 选择刚下载的文件,
视安装情况, 会要求reload几次