Month: October 2023

registry.hub.docker.com/r/akaiot/oracle_11g

docker run -d --name oracle_11g -p 1521:1521 --privileged=true --restart=always -e TZ=Asia/Shanghai -v /opt/oracle/ggs:/opt/oracle/ggs -v /opt/oracle/oradata:/home/oracle/app/oracle/oradata -v /opt/oracle/flash_recovery_area/helowin:/home/oracle/app/oracle/flash_recovery_area/helowin akaiot/oracle_11g:latest oracle镜像来自registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 账户:root/helowin docker exec -it oracle_11g /bin/bash source /home/oracle/.bash_profile su root #password:helowin…

Continue Reading

MSSQL-SQLServer数据库data source

数据源表示数据库所在设备的ip地址或名称,基本上有以下几种写方法 data source = (local) data source = "127.0.0.1" data source = . data source = “服务器设备的ip” data source = “服务器设备的名称” 如果要连接的是本地的数据库(可以简单理解为向数据库发起连接请求的程序和数据库在同一台设备上面),上面的方法都是适用的,但如果请求连接的不是本地的数据库那么就只有最后两个方法可以使用(部分情况下还要进行其他操作)。

Continue Reading

IIS Rewrite-http_toHttps-Add_WWW

<?xml version="1.0" ?> <rules> <clear/> <rule name="Add_WWW" stopProcessing="true"> <match url="^(.*)$"/> <conditions> <add input="{HTTP_HOST}" pattern="^(?!www.)(.*)$"/> </conditions> <action type="Redirect" url="http://www.{C:0}{PATH_INFO}" redirectType="Permanent"/> </rule> <rule name="http_toHttps" stopProcessing="true"> <match url="(.*)"/> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true"/>…

Continue Reading

完美DSM-CentOS

修改默认的webstation端口为8080和8443,并启动容器 cd /usr/syno/share/nginx sed -i "s/80/8080/g" server.mustache sed -i "s/80/8080/g" DSM.mustache sed -i "s/80/8080/g" WWWService.mustache sed -i "s/443/8443/g" server.mustache sed -i "s/443/8443/g" DSM.mustache sed -i "s/443/8443/g" WWWService.mustache docker run -itd…

Continue Reading

群晖释放端口80、443,并修改默认5000、5001

一、 释放80、443端口占用 #ssh登陆nas sudo -i #切换至root用户 #检查端口占用情况 netstat -anp |grep 80 netstat -anp |grep 443 #能确定端口被nginx占用 cd /usr/syno/share/nginx #文件备份,也可以不备份 cp server.mustache server.mustache_`date +%Y%m%d` cp DSM.mustache DSM.mustache_`date +%Y%m%d` cp WWWService.mustache WWWService.mustache_`date…

Continue Reading