npm config set strict-ssl false
20240111开源备份backupPC
3.x版本
1 | yum install BackupPC |
4.x
1 | yum --enablerepo=extras -y install epel-release |
安装BackupPC-XS
1 | https://objects.githubusercontent.com/github-production-release-asset-2e65be/ |
Install the following requisites for BackupPC version 4.3.1
1 |
|
Lets set up some directories that we are going to use later.
My backuppc server has a raid10 array mounted at /data/. I am going to use this to store the data for backuppc. Lets create the backuppc folder on my raid. Note: this folder can grow to be extremely large.
1 | mkdir -p /data/backuppc |
Now lets create one more folder for BackupPC to store some web interface files.
1 | mkdir -p /var/www/html/backuppc |
And create the cgi-bin directory for backuppc
1 | mkdir -p /var/www/cgi-bin/backuppc |
Make note of those 2 directories. The installer will ask for them if we don’t explicitly set them below.
Create and setup the backuppc user.
Create group backuppc.
1 | groupadd backuppc |
Create backuppc user, and tell it where its home folder is. My backuppc user’s home folder is /opt/backuppc. Change this to whatever you’d like.
1 | useradd --home-dir /opt/backuppc --create-home --shell /bin/bash --base-dir /opt/backuppc --gid backuppc backuppc |
Set Permissions on the directories we created:
1 | chown -R backuppc:backuppc /data/backuppc |
Download the BackupPC tar.gz archive and extract it.
1 | cd ~ |
Run the configure.pl script
Pay close attention to the paths in this command.
1 | perl configure.pl --batch --cgi-dir /var/www/cgi-bin/backuppc \ |
Alternatively, you can execute the perl script with no arguments and it will walk you through the install step by step. This is the preferred method if you are upgrading a version 3.X install. (Not supported by this guide)
1 | perl configure.pl |
1 | Ok, we're about to: |
Apache config
I chose the CGI route (not S-CGI) and chose the directory /var/www/cgi-bin/backuppc for my CGI directory. I chose /var/www/html/backuppc as my images directory. You may need to set this path in the config if you ran the configure.pl script with no arguments.
Now we need to copy the Apache config into the apache conf.d directory.
1 | cp httpd/BackupPC.conf /etc/httpd/conf.d/ |
Install the included systemd script:
1 | cp systemd/backuppc.service /etc/systemd/system/ |
Create the backuppc authentication file.
1 | htpasswd -c /etc/BackupPC/BackupPC.users backuppc |
Note: this sets the username to backuppc (modify it to your liking)
Set permissions on this file.
1 | chown backuppc:backuppc /etc/BackupPC/BackupPC.users |
Edit the config.pl file in /etc/BackupPC/
1 | vim /etc/BackupPC/config.pl |
Check the image directory and image url variables.
1 | $Conf{CgiImageDir} = '/var/www/html/backuppc'; |
Also add backuppc as the administrative user: $Conf{CgiAdminUsers} = 'backuppc';
这时候不能往/etc/BackupPC目录写东西,
chcon -R -t httpd_sys_content_t /etc/BackupPC
查看备份内容
1 | # 列表 |
20240110- Linux查看CPU信息,机器型号,内存等信息
Linux查看CPU信息,机器型号,内存等信息
1. 系统
命令 | 含义 |
---|---|
uname -a | 查看内核/操作系统/CPU信息 |
head -n 1 /etc/issue | 查看操作系统版本 |
cat /proc/cpuinfo | 查看CPU信息 |
hostname | 查看计算机名 |
lspci -tv | 列出所有PCI设备 |
lsusb -tv | 列出所有USB设备 |
lsmod | 列出加载的内核模块 |
env | 查看环境变量 |
lspci | grep -i nvidia | 查看NVIDIA显卡 |
2. 资源
命令 | 含义 |
---|---|
free -m | 查看内存使用量和交换区使用量 |
df -h | 查看各分区使用情况 |
du -sh <目录名> | 查看指定目录的大小 |
grep MemTotal /proc/meminfo | 查看内存总量 |
grep MemFree /proc/meminfo | 查看空闲内存量 |
uptime | 查看系统运行时间、用户数、负载 |
cat /proc/loadavg | 查看系统负载 |
3. 磁盘和分区
命令 | 含义 | |
---|---|---|
mount | column -t | 查看挂接的分区状态 |
fdisk -l | 查看所有分区 | |
swapon -s | 查看所有交换分区 | |
hdparm -i /dev/hda | 查看磁盘参数(仅适用于IDE设备) | |
dmesg | grep IDE | 查看启动时IDE设备检测状况 |
4. 网络
命令 | 含义 |
---|---|
ifconfig | 查看所有网络接口的属性 |
iptables -L | 查看防火墙设置 |
route -n | 查看路由表 |
netstat -lntp | 查看所有监听端口 |
netstat -antp | 查看所有已经建立的连接 |
netstat -s | 查看网络统计信息 |
5. 进程
命令 | 含义 |
---|---|
ps -ef | 查看所有进程 |
top | 实时显示进程状态 |
6. 用户
命令 | 含义 |
---|---|
w | 查看活动用户 |
id <用户名> | 查看指定用户信息 |
last | 查看用户登录日志 |
cut -d: -f1 /etc/passwd | 查看系统所有用户 |
cut -d: -f1 /etc/group | 查看系统所有组 |
crontab -l | 查看当前用户的计划任务 |
7. 服务
命令 | 含义 |
---|---|
chkconfig –list | 列出所有系统服务 |
chkconfig –list | grep on | 列出所有启动的系统服务 |
8. 程序
命令 | 含义 |
---|---|
rpm -qa | 查看所有安装的软件包 |
9. 查看CPU信息(型号)
- CPU型号
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
- 几颗核心
cat /proc/cpuinfo | grep physical | uniq -c
- 查看CPU模式
getconf LONG_BIT
- 查看CPU运算flags
cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
- 完整看cpu详细信息
dmidecode | grep 'Processor Information
- 查看内存信息
cat /proc/meminfo
- 查看当前操作系统内核信息
uname -a
- 查看当前操作系统发行版信息
cat /etc/issue | grep Linux
- 查看机器型号
dmidecode | grep "Product Name
- 查看网卡信息
dmesg | grep -i eth
10. GPU相关命令
- 查看显卡信息
lspci | grep -i vga
- 若使用NVIDIA显卡
lspci | grep -i nvidia
- 查看显卡详情
lspci -v -s 00:0f.0
- 查看显存使用情况
nvidia-smi
- 周期性输出显卡使用情况
watch -n 10 nvidia-smi
- 查看cuda版本
cat /usr/local/cuda/version.txt
- 查看cudnn版本
cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2
2023-1219-开源oss
开源oss
Minio:一个基于Apache License v2.0协议的开源对象存储服务器。Minio支持Amazon S3兼容API,可以用于构建云端的备份,CDN和存储库。
Ceph:一个分布式文件系统,可以在计算机集群上提供高性能的对象存储和文件系统服务。Ceph是一个开源项目,提供了一个名为RadosGW的对象存储服务器,支持Amazon S3和OpenStack Swift API。
GlusterFS:一个分布式文件系统,可以在计算机集群上提供高性能的文件存储服务。GlusterFS使用FUSE来将分布式文件系统挂载到本地文件系统上,可以提供类似于NFS或CIFS的文件共享服务。
2023-1110-kettle学习
20231110-kettle学习
kettle用repositories
新建一个数据库的仓库,记着要把启动命令中增加 “-Dfile.encoding=UTF-8”,否则打开文件的时候会出现 Invalid byte 1 of 1-byte UTF-8 sequence.
然后新建的转换和作业就保存到数据库中
linux服务器操作
把pdi解压缩后复制到/usr/local/data-integration
目录
设置环境变量
1 | export KETTLE_HOME=/usr/local/data-integration |
把windows下做好的 repositories.xml 文件复制到/usr/local/data-integration/.kettle
目录下
查看repository:
1 | ./kitchen.sh -listrep |
查看所有的job
1 | ./kitchen.sh -rep:birepo -user:admin -pass:admin -listjobs |
查看所有的trans
1 | ./pan.sh -rep:birepo -user:admin -pass:admin -listtrans |
执行转换:
1 | $ ./pan.sh -rep:birepo -user:admin -pass:admin -trans:market |
执行转换
1 | $ ./pan.sh -rep:birepo -user:admin -pass:admin -trans:car_transfer_info |
执行job
1 | $ ./kitchen.sh -rep:birepo -user:admin -pass:admin -job:zgcw |
执行job带参数
1 | ./kitchen.sh -rep:erp_kettle -user:admin -pass:admin -parameter:start_date=2023-12-1 -job:guanbao |
做第一个市场每日交易统计
新建表 transfer_daily_report
1 | CREATE TABLE `transfer_daily_report` ( |
新建重构作业流程
第一步先清库,新建执行sql的任务
1 | delete from transfer_daily_report; |
新建一个获取全部交易执行的语句
1 | SELECT date( handle_time) as day, |
新增一个生成车辆分类的脚本
1 | //Script here |
最后添加一个表输出的节点。
新建日更新的作业
新增一个获取最近10天交易的sql
1 | SELECT date(handle_time) as day, |
添加生成车辆类别的脚本(同上)
最后增加一个插入或者更新表的节点
这里要根据市场、日期、车辆类型来更新。
Untitled
make oracle on vagrant box
https://geraldonit.com/2018/06/11/creating-an-oracle-database-vagrant-box/
根据
生成两个vm,使用oraclelinux/7 , 分别是192.168.56.10 192.168.56.11
1 |
|
安装依赖
1 | yum install binutils compat-libstdc++-33 compat-libstdc++-33.i686 gcc gcc-c++ glibc glibc.i686 glibc-devel glibc-devel.i686 ksh libgcc libgcc.i686 libstdc++ libstdc++.i686 libstdc++-devel libstdc++-devel.i686 libaio libaio.i686 libaio-devel libaio-devel.i686 libXext libXext.i686 libXtst libXtst.i686 libX11 libX11.i686 libXau libXau.i686 libxcb libxcb.i686 libXi libXi.i686 make sysstat unixODBC unixODBC-devel zlib-devel elfutils-libelf-devel -y |
修改/etc/ssh/sshd_config
1 | X11forwarding yes |
退出终端
生成进入x终端的脚本
1 | #!/bin/sh |
XQuartz中启动terminal,执行命令:
1 | ./whx.sh |
root用户执行:
1 | /home/vagrant/app/oraInventory/orainstRoot.sh |
master设置:
设置sid: whx
设置密码:zaq1XSW2
1 | export ORACLE_SID=whx |
slaver设置
设置sid: orcl
设置密码:zaq1XSW2
1 | export ORACLE_SID=orcl |
启动oracle
1 | dbstart $ORACLE_HOME |
下面开始试着主从复制
https://www.cnblogs.com/hooly/p/8178570.html
进入主从,分别执行
1 | sqlplus / as sysdba |
设置主数据库(whx )为归档mode (以as sysdba身份,可在sqlplus中执行)
(以as sysdba身份,可在sqlplus中执行)
查是否归档,如是归档,请忽略第3点
1 | SQL> archive log list; |
归档设置
1 | shutdown immediate; |
主/从数据新建stream管理用户(在主从数据库都执行以下操作)
1 | sqlplus / as sysdba; |
1 | sqlplus / as sysdba; |
主数据库新建连接从数据库的link
1 | create public database link orcl connect to strmadmin IDENTIFIED BY strmadmin |
从数据库新建连接主数据库的link
1 | create public database link whx connect to strmadmin IDENTIFIED BY strmadmin |
select sysdate from dual@whx
主数据库流队列创建 (可在plsql中的SQL中执行,登录名应为strmadmin)
1 | connect strmadmin/strmadmin |
提示:PL/SQL procedure successfully completed.
从数据库流队列创建
1 | connect strmadmin/strmadmin --以strmadmin身份,登录从数据库。 |
提示:PL/SQL procedure successfully completed.
主数据库创建捕获进程
1 | connect strmadmin/strmadmin |
提示:PL/SQL procedure successfully completed.
从数据库实例化strmadmin用户 (这两个路径须一致)
1 | exp strmadmin/strmadmin@whx file='/home/vagrant/crm.dmp' object_consistent=y rows=y |
这个执行失败
1 | EXP-00056: ORACLE error 12154 encountered |
修改 /home/vagrant/app/vagrant/product/11.2.0/dbhome_1/network/admin/tnsnames.ora增加 WHX部分内容
1 |
|
然后导出正常。
在从数据库新建strmadmin
1 | imp strmadmin/strmadmin@orcl file='/home/vagrant/crm.dmp' ignore=y commit=y streams_instantiation=y full=y |
主数据库创建传播进程
1 | connect strmadmin/strmadmin |
注意:此段语句执行可能会报错,如果报错,不用管,继续执行后面的。
修改propagation休眠时间为0,表示实时传播LCR,latency以秒为单位
1 | begin |
从数据创建应用进程
1 | connect strmadmin/strmadmin |
启动Stream
从数据库启动应用进程
1 | connect strmadmin/strmadmin |
主数据库启动捕获进程
1 | begin |
现在就可以进行测试了,在whx用户中作何一个测试表新增数据,删除数据,增加表,修改表结构,进行同步测试
2023-1020-oracle学习
oracle学习
新增oracle用户并用oracle登录
增加到bash_profile
1 | # Oracle Settings |
安装依赖
1 |
|
修改/etc/ssh/sshd_config
1 | X11forwarding yes |
在
XQuartz中启动terminal,执行命令:
1 | ssh -Y oracle@**** -o "XAuthLocation=/opt/X11/bin/xauth" |
oracle手动启动
1 | # lsnrctl start |
2023-0928-docker-compose-oracle
docker-compose 安装oracle
使用 https://hub.docker.com/r/oracleinanutshell/oracle-xe-11g 镜像
创建docker-compose.yml
1 | version: '3' |
拉镜像
docker-compose pull
启动后
docker-compose up -d
复制/u01 到 ./data
docker cp dck_oracle-db_1:/u01 ./data
然后修改docker-compose.yml
1 | version: '3' |
这时候数据就保存在本地硬盘了
docker-compose exec oracle-db bash
sql-plus
user:system
pwd: oracle
By default, the password verification is disable(password never expired)
Connect database with following setting:
1 | hostname: localhost |
Password for SYS & SYSTEM
1 | oracle |
最新版
https://container-registry.oracle.com/
这里是直接下载各种版本的地方 https://www.oracle.com/cn/database/technologies/oracle-database-software-downloads.html#db_free
为了安装docker版本, 必须在 https://container-registry.oracle.com/ords/f?p=113:1:102342682778790:::1:P1_BUSINESS_AREA:3&cs=3T4nkcPYyj6ewF0qib0dU82LAmedE6CKr9q8rmOAgxLycqz9EVlXaoK41xRcvBalvRR4e6uVOdKMXmQIvBkPMdw 同意oracle的terms后才能pull
1 | docker login container-registry.oracle.com/ |
Tags
Download Mirror
Tag | OS/Architecture | Pull Command | Last Updated |
---|---|---|---|
19.3.0.0 | linux/amd64 | docker pull container-registry.oracle.com/database/enterprise:19.3.0.0 | 5 weeks ago |
latest | linux/amd64 | docker pull container-registry.oracle.com/database/enterprise:latest | 5 weeks ago |
21.3.0.0 | linux/amd64 | docker pull container-registry.oracle.com/database/enterprise:21.3.0.0 | 5 weeks ago |
19.19.0.0 | linux/arm64 | docker pull container-registry.oracle.com/database/enterprise:19.19.0.0 | 2 months ago |
12.2.0.1 | linux/amd64 | docker pull container-registry.oracle.com/database/enterprise:12.2.0.1 | 6.1 years ago |
12.2.0.1-slim | linux/amd64 | docker pull container-registry.oracle.com/database/enterprise:12.2.0.1-slim | 6.1 years ago |
12.1.0.2 | linux/amd64 | docker pull container-registry.oracle.com/database/enterprise:12.1.0.2 | 6.2 years ago |
2023-0808-vagrant-centos7-硬盘扩容
vagrant centos7 硬盘扩容
vagrantfile 中增加
1 | config.disksize.size = "200GB" |
vagrant reload
安装工具
1 | vagrant ssh |
2023-0406-docker build multi platform
docker build multi platform
macbook arm版生成镜像时候是arm64 架构的,没法在服务器运行,为了给服务器打镜像。
改成 如下命令可以生成服务器运行的镜像
1 | docker build --platform linux/amd64 . |
但是不能在本机运行,改成如下命令生成多架构的镜像
1 | docker buildx build --platform linux/amd64,linux/arm64 |
但是提示
ERROR: multiple platforms feature is currently not supported for docker driver. Please switch to a different driver (eg. “docker buildx create –use”)
然后学习后发现需要
1 |
|
然后就可以了。