ubuntu-20.04.1-desktop上phpipam的其他功能扩展
来源:SegmentFault
时间:2023-01-17 15:11:55 402浏览 收藏
怎么入门数据库编程?需要学习哪些知识点?这是新手们刚接触编程时常见的问题;下面golang学习网就来给大家整理分享一些知识点,希望能够给初学者一些帮助。本篇文章就来介绍《ubuntu-20.04.1-desktop上phpipam的其他功能扩展》,涉及到MySQL、Ubuntu、apache、phpipam,有需要的可以收藏一下
1. 启用HTTPS服务
HTTPS是在HTTP基础上加入SSL,安全性更高。嫌麻烦,我们使用OpenSSL生成免费证书,并在apache配置SSL。
1.1 使用openssl生成免费证书
1.安装OpenSSL。
ipam@ubuntu:~/Downloads$ openssl genrsa -des3 -out ca.key 2048
查看生成的私钥可以使用
ipam@ubuntu:~/Downloads$ openssl rsa -text -in ca.key
3.创建证书签名请求CSR文件,生成过程中会要求填写一些信息
ipam@ubuntu:~/Downloads$ openssl req -new -key ca.key -out ca.csr Enter pass phrase for ca.key: You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [AU]:cn State or Province Name (full name) [Some-State]:cn Locality Name (eg, city) []:cn Organization Name (eg, company) [Internet Widgits Pty Ltd]:cn Organizational Unit Name (eg, section) []:cn Common Name (e.g. server FQDN or YOUR name) []:cn //填写即将发布url的根服务器,如*.example.cn Email Address []:cn Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []:cn string is too short, it needs to be at least 4 bytes long A challenge password []:cncn //你的证书密码,如果不想设置密码,可以直接回车 > An optional company name []:cn
查看csr文件命令如下
ipam@ubuntu:~/Downloads$ openssl req -text -in ca.csr -noout
4.生成签名证书
ipam@ubuntu:~/Downloads$ openssl x509 -req -days 3650 -in ca.csr -signkey ca.key -out ca.crt Signature ok subject=C = cn, ST = cn, L = cn, O = cn, OU = cn, CN = cn, emailAddress = cn Getting Private key Enter pass phrase for ca.key:
1.2 配置apache
1.启用SSL模块
查看
/etc/apache2/ports.conf端口配置文件
Listen 80Listen 443 Listen 443
可以看到要使用443服务,需要先启用SSL模块。
ipam@ubuntu:~/Downloads$ sudo a2enmod ssl
2.修改
/etc/apache2/sites-available/内的配置文件
为了方便管理,证书文件和私钥,分别拷贝至
/etc/apache2/ssl/certs/ca.crt以及
/etc/apache2/ssl/private/ca.key。由于apache在该文件夹内已创建了示例配置文件
default-ssl.conf,修改即可。
#三个部分必须修改 SSLEngine On SSLCertificateFile /etc/apache2/ssl/certs/ca.crt SSLCertificateKeyFile /etc/apache2/ssl/private/ca.key
也可以拷贝
000-default.conf文件,并进行简单修改。命名为
phpipam-ssl.conf,内容如下:
# The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection URLs. In the context of virtual hosts, the ServerName # specifies what hostname must appear in the request's Host: header to # match this virtual host. For the default virtual host (this file) this # value is not decisive as it is used as a last resort host regardless. # However, you must set it for any further virtual host explicitly. #ServerName www.example.com SSLEngine On ServerAdmin webmaster@localhost DocumentRoot /var/www/phpipam SSLCertificateFile /etc/apache2/ssl/certs/ca.crt SSLCertificateKeyFile /etc/apache2/ssl/private/ca.key # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined # For most configuration files from conf-available/, which are # enabled or disabled at a global level, it is possible to # include a line for only one particular virtual host. For example the # following line enables the CGI configuration for this host only # after it has been globally disabled with "a2disconf". #Include conf-available/serve-cgi-bin.conf # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
3.启用apache SSL配置
若是修改了
default-ssl.conf,则
ipam@ubuntu:/etc/apache2/sites-available$ sudo a2ensite default-ssl.conf
文件名根据实际情况自行修改。
4.强制使用https
由于之前配置过http服务,考虑强制转成https,即输入网址后自动跳转https服务。修改
/etc/apache2/sites-available/000-default.conf,里面添加以下内容并保存。
RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}$1 [L,R]
5.重载apache
ipam@ubuntu:/etc/apache2/sites-available$ sudo systemctl reload apache2.service
或者重启
ipam@ubuntu:/etc/apache2/sites-available$ sudo systemctl restart apache2.service
2. 数据库自动备份
cron是一个Linux定时执行工具,在Ubuntu,可通过
/etc/crontab文件进行查看,或者
crontab -l
1.打开cron,并进行编辑。保存关闭有命令提示。
ipam@ubuntu:~/Downloads$ crontab -e
2.配置定时备份
文件备份在
/home/ipam/Documents/bak/。另外,
%在crontab为换行,因此
%之前需要添加转义字符
\;
{}和
\之间有空格,
\和
;之间没有空格,否则会报错
/usr/bin/find: 缺少“-exec”参数。
#每天0时进行备份并对30天前的备份资料进行删除 * 0 */1 * * /usr/bin/mysqldump -uroot -p123456 phpipam > /home/ipam/Documents/bak/phpipam_bak_$(date "+\%Y\%m\%d").sql * 0 */1 * * /usr/bin/find /home/ipam/Documents/bak/ -ctime +30 -exec rm {} \;
3.数据库还原
采用source命令。
ipam@ubuntu:~/Downloads$ mysql -u root -p ipam@ubuntu:mysql>use phpipam ipam@ubuntu:mysql>source /home/ipam/Documents/bak/phpipam_bak_20210230.sql
3. 定时扫描
也是使用的crontab。
*/30 * * * * /usr/bin/php /var/www/phpipam/functions/scripts/pingCheck.php */30 * * * * /usr/bin/php /var/www/phpipam/functions/scripts/discoveryCheck.php
4. 参考资料(因为链接太多被判定为广告,需要的自行百度)
1. Config Server Firewall:How to Generate Self-signed SSL Certificate using OpenSSL in Ubuntu 18.04
2. 挑战者V:Ubuntu 16.04配置SSL免费证书
3. hiekay:ubuntu apache2 配置安装ssl证书,https]
4. 龙恩0707:使用openssl 生成免费证书
5. ubuntu wiki
6. linux 命令大全
7. nancy05:备份与还原mysql 数据库的常用命令
8. 大专栏 IP地址管理(IPAM)
9. crontab命令详解 含启动/重启/停止
10.killkill:crontab 的写法(@reboot, @1early...)
11. siaisjack:Linux下date命令,格式化输出,时间设置
12. 听风:linux每日命令(21):find命令之exec
13. leno米雷のcoding记录:Linux的find命令实例详解和mtime ctime atime
14. 博客园:myql数据库备份及还原
今天带大家了解了MySQL、Ubuntu、apache、phpipam的相关知识,希望对你有所帮助;关于数据库的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
-
335 收藏
-
467 收藏
-
303 收藏
-
176 收藏
-
368 收藏
-
475 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习