分类 电脑 下的文章

openvpn.exe安装失败 - 因为安装程序同名

openvpn可以方便异地组网,是个不错的软件。

过程:

1.无法直接从官方下载,尝试从国外下载后转到本地,将安装程序另存为了openvpn.exe的名称

2.本地安装OpenVPN 2.4.6-I602
openvpn-1.png

3.安装过程中,提示已有openvpn进程且无法停止,安装失败 - The installation cannot continue as OpenVPN is currently rnning. Please close all OpenVPN instances and re-run the installer
openvpn-2.png

4.网上查得,安装程序会检测是否有openvpn.exe的进程,如有且无法退出时,会导致安装失败。因为之前将安装程序本身另存了openvpn.exe的名称,导致冲突。将安装程序改名为其它就可以了

参考:https://forums.openvpn.net/viewtopic.php?t=20892

在FreeBSD 12里安装openlitespeed-1.5

FreeBSD 12 64位。

1.pkg install curl # 如果没有curl,请先安装

2.pkg intall pcre

3.pkg install rcs

4.pkg install GeoIP

5.pkg install udns

6.pkg install perl5.26

7.portsnap fetch # 不能通过pkg安装expat2,所以需要先获取ports

8.portsnap extract

9.cd /usr/ports/textproc/expat2; make install clean; rehash; # 安装 expat2

10.cd ~

11.fetch https://openlitespeed.org/packages/openlitespeed-1.5.0.src.tgz # 下载安装源码

12.cd openlitespeed-1.5.0 # 解压后进入文件目录

13../configure --with-pcre=/usr/local # 配置

14.make # 编辑

15.make install # 安装
freebsd-openlitespeed-1.png

16./usr/local/lsws/bin/lswsctrl start # 启动 openlitespeed
freebsd-openlitespeed-2.png

17.默认站点显示正常
freebsd-openlitespeed-3.png

18.管理后台
freebsd-openlitespeed-4.png

参考:https://openlitespeed.org/kb/installation-from-source-code/

升级FreeBSD到12版本后,无法ssh远程连接,ssh_exchange_identification

自助将FreeBSD-11,升级到12版本后,无法远程ssh连接,提示错误:ssh_exchange_identification: Connection closed by remote host。

过程:

1.service sshd start # 尝试启动sshd服务,提示错误:
/etc/ssh/sshd_config line 122: Bad SSH2 cipher spec... WARNING: failed precmd routing for sshd

ssh2-cipher-1.png

2.ssh -Q ciphe # 查询当前支持的加密方式
ssh2-cipher-2.png

3.vi /etc/ssh/sshd_config # 编辑sshd的配置文件,对比加密方式配置是否与上一步显示的相同,如有差异,删除多余的
ssh2-cipher-3.png

4.再次启动 sshd,成功,且可远程连接
ssh2-cipher-4.png

参考:https://superuser.com/questions/962090/bad-ssh2-cipher-spec-with-protocol-2-ciphers-and-openssh-7-1-server

在FreeBSD 12 里安装openwebmail

系统是FreeBSD 12 64位。

1.pkg install postfix # 安装postfix,替换默认的sendmail

2.vi /etc/rc.conf # 编辑配置文件,禁用sendmail

sendmail_enable="NO"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
postfix_enable="YES"

3.service sendmail stop # 停掉sendmail

4.newaliases

5.service postfix start # 启动 postfix

6.vi /etc/periodic.conf # 编辑配置文件

daily_clean_hoststat_enable="NO"
daily_status_mail_rejects_enable="NO"
daily_status_include_submit_mailq="NO"
daily_submit_queuerun="NO"

7.pkg install apache24 # 安装 apache24

8.pkg install p5-CGI.pm # 安装Perl的cgi

9.pkg install openwebmail # 安装 openwebmail
freebsd-openwebmail-6.png

10.vi /usr/local/etc/apache24/httpd.conf # 编辑 apache 的配置文件,启用 mod_cgi.so 模块,添加一个新站点设置,如

<VirtualHost *:80>
    DocumentRoot "/usr/local/www/data"
    ServerName drs2.anqun.org
    ErrorLog "/var/log/dummy-drs2.anqun.org-error_log"
    
    <Directory />
        AllowOverride none
         Require all granted
    </Directory>
    
    <Directory "/usr/local/www/data">
        AllowOverride none
        Require all granted
    </Directory>

    ScriptAlias /cgi-bin/ "/usr/local/www/cgi-bin/"
    <Directory "/usr/local/www/cgi-bin">
        AllowOverride None
        Options None
        Require all granted
    </Directory>
    
    AddHandler cgi-script .pl
    
    DirectoryIndex index.html openwebmail.pl
</VirtualHost>

11.sysrc apache24_enable="YES" # 启用 apache24 服务

12.service apache24 start # 启动 apache

13.adduser # 添加一个普通用户,加到wheel组中

14.在浏览器里访问cgi-bin目录,如 http://drs2.anqun.org/cgi-bin/openwebmail , 登录
freebsd-openwebmail-1.png

15.首次登录会提示设置基本信息
freebsd-openwebmail-2.png

16.发信正常
freebsd-openwebmail-4.png

17.收信正常
freebsd-openwebmail-5.png

参考:

在Ubuntu 16里安装 python 3.6 + uWSGI + Nginx

环境:Ubuntu 16 64位

1.apt update # 更新软件源

2.apt install software-properties-common # 为安装python3.6做准备,ubuntu16自带的是python3.5

3.add-apt-repository ppa:deadsnakes/ppa # 安装ppa

4.apt updat # 更新软件源

5.apt install python3.6 python3.6-dev # 安装python3.6及开发包

6.rm /usr/bin/python3 # 移除原有的python3.5链接

7.ln -s /usr/bin/python3.6 /usr/bin/python3 # 创建python3链接到python3.6

8.apt install mysql-server # 安装mysql数据库,设置密码

9.apt install mongodb # 安装 mongodb

10.apt install python3-pip # 安装 python3-pip

11.apt python3-mysql.connector # 安装 mysql.connector

12.cd /mys/street_app_server/ # 切换到 app_server 文件所在的根目录

13.pip3 install -r requirements.txt # 安装依赖的python3包

14.create database CWS_APP; # 在mysql的命令行中,或在phpmyadmin中,创建 CWS_APP 数据库

15.python3 manage.py init # 初始化,会自动创建openluat_user和street_machine数据库及相应的数据表

16.python3 manage.py runserver # 如需测试,可运行

17.pip3 install uWSGI # 安装 uWSGI

18.apt install supervisor # 安装 supervisor,用来管理uWSGI

19.vi /etc/supervisor/conf.d/mys.conf # 创建新的 supervisor 配置文件,配置uWSGI运行,内容如下:

[program:uwsgi]
command=uwsgi --ini /mys/street_app_server/config/uwsgi_config.ini --listen 128
environment=production="1",FLASK_CONFIG="production"
startretries=8                ; max # of serial start failures (default 3)
stdout_logfile=/mys/log/uwsgi.log        ; stdout log path, NONE for none; default AUTO
stdout_logfile_maxbytes=10MB   ; max # logfile bytes b4 rotation (default 50MB)
stdout_logfile_backups=8     ; # of stdout logfile backups (default 10)
stderr_logfile=/mys/log/uwsgi.log        ; stderr log path, NONE for none; default AUTO
stderr_logfile_maxbytes=10MB   ; max # logfile bytes b4 rotation (default 50MB)
stderr_logfile_backups=8     ; # of stderr logfile backups (default 10)

20.service supervisor start # 启动 supervisor 服务

21.apt install nginx # 安装 nginx

22.vi /etc/nginx/sites-enabled/mys # 创建新站配置文件,内容如下:

server {
        listen 80;

        server_name szt.anqun.org;
        root /mys/;
        error_log /mys/log/mafunginx.error;

        location / {
            include uwsgi_params;
            uwsgi_pass 127.0.0.1:33410; # 这里与uwsgi中的端口号相同
        }

        location ~* .txt {
            root /mys/streetweb;
            index index.html;
        }

        location /assets {
            root    /mys/streetweb;
            index index.html;
            autoindex       on;
        }

        location /adminpage/assets {
            root    /mys/streetweb;
            index index.html;
            autoindex       on;
        }

        location /adminpage/ {
            root /mys/streetweb;
            index index.html;
        }
    }

23.nginx -s reload # 重载nginx配置文件

24.在浏览器里访问 http://域名/adminpage/ 应该会显示登录界面,默认用户名是 15300002713 ,密码是 888888

25.如需配置数据库密码等,配置文件在 /mys/street_app_server/config 目录里

26.cd /mys # 转到包含有 emqttd-ubuntu16-64.zip 文件的目录,解压

27../emqttd/bin/emqttd start # 启动emqttd

参考:https://www.jianshu.com/p/3fb071d55d4d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation