摘要:
1. 安装tomcat unzip tomcat.zip mv tomcat /home/ cd /home/tomcat chmod +x *.sh cd bin chmod +x *.sh /home/tomcat下 三个sh 进行启动关闭 2. 开web端口 firewall-cmd --li 阅读全文
摘要:
tar -zxvf LibreOffice_7.4.0_Linux_x86-64_rpm.tar.gz cd LibreOffice_7.4.0.3_Linux_x86-64_rpm/ cd RPMS ls yum install cairo -y yum install cups-libs -y 阅读全文
摘要:
1. 安装xxl-job-admin unzip xxl-job-admin.zip ls mv xxl-job-admin-2.4.0/ /home cd /home/ xxl-job-admin-2.4.0/ cd bin/ chmod +x *.sh 2. 配置 cd ../conf/ vim 阅读全文
摘要:
1. 安装mysql tar -xvf mysql-8.0.21-linux-glibc2.12-x86_64.tar mv mysql-8.0.21-linux-glibc2.12-x86_64 /usr/local/mysql 2. 配置mysql vim /etc/my.cnf [client 阅读全文
摘要:
以下操作均在本地服务器上进行: 一、生成公钥和私钥 ssh-keygen -t rsa 二、将公钥复制到远程服务器 ssh-copy-id username@remote_server 三、配置免密登录 ssh username@remote_server 四、 虽然免密登录提高了工作效率和安全性, 阅读全文
摘要:
1. 通过以下命令自动下载并安装适应系统版本的 Compose: 到:https://github.com/docker/compose/releases/ 查找最新版release,替换路径的1.10.0 curl -L "https://github.com/docker/compose/rel 阅读全文
摘要:
以test数据库为例: 一、导出数据库 /usr/local/mysql/bin/mysqldump -uroot -p test --routines | gzip > test_250102.sql.gz 二、导入数据库 gunzip < /root/test_250102.sql.gz | / 阅读全文
摘要:
1. 安装Jenkins wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo --no-check-certificate rpm --import https://pkg.j 阅读全文