Mudanças entre as edições de "AtoM"
De MochilaWiki
Ir para navegaçãoIr para pesquisarLinha 5: | Linha 5: | ||
=== Preparando ambiente === | === Preparando ambiente === | ||
− | < | + | <source lang="bash"> |
sudo apt-get update | sudo apt-get update | ||
sudo apt-get upgrade | sudo apt-get upgrade | ||
Linha 15: | Linha 15: | ||
Certifique que tenha universe em sources.list | Certifique que tenha universe em sources.list | ||
− | < | + | <source lang="bash"> |
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | ||
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list | echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list | ||
Linha 22: | Linha 22: | ||
=== Setup === | === Setup === | ||
− | < | + | <source lang="bash"> |
sudo apt install openjdk-11-jre-headless software-properties-common \ | sudo apt install openjdk-11-jre-headless software-properties-common \ | ||
mysql-server-5.7 elasticsearch nginx php-memcache gearman-job-server \ | mysql-server-5.7 elasticsearch nginx php-memcache gearman-job-server \ | ||
Linha 31: | Linha 31: | ||
=== arquivos de configuração === | === arquivos de configuração === | ||
− | < | + | <source lang="bash"> |
wget pub.nkosi.org/icaatom/atom.nginx | wget pub.nkosi.org/icaatom/atom.nginx | ||
wget pub.nkosi.org/icaatom/atom.phpfpm | wget pub.nkosi.org/icaatom/atom.phpfpm | ||
Linha 50: | Linha 50: | ||
=== habilantando e reiniciando os serviços === | === habilantando e reiniciando os serviços === | ||
− | < | + | <source lang="bash"> |
sudo systemctl enable nginx | sudo systemctl enable nginx | ||
sudo systemctl enable php7.2-fpm | sudo systemctl enable php7.2-fpm | ||
Linha 63: | Linha 63: | ||
=== baixando e instalando === | === baixando e instalando === | ||
− | < | + | <source lang="bash"> |
wget pub.nkosi.org/icaatom/atom-2.5.3.tar.gz | wget pub.nkosi.org/icaatom/atom-2.5.3.tar.gz | ||
sudo mkdir /usr/share/nginx/atom | sudo mkdir /usr/share/nginx/atom | ||
Linha 72: | Linha 72: | ||
=== criando banco de dados === | === criando banco de dados === | ||
− | < | + | <source lang="bash"> |
sudo mysql -h localhost -u root -p -e "CREATE DATABASE atom CHARACTER SET utf8 COLLATE utf8_unicode_ci;" | sudo mysql -h localhost -u root -p -e "CREATE DATABASE atom CHARACTER SET utf8 COLLATE utf8_unicode_ci;" | ||
sudo mysql -h localhost -u root -p -e "GRANT ALL ON atom.* TO 'atom'@'localhost' IDENTIFIED BY '12345';" | sudo mysql -h localhost -u root -p -e "GRANT ALL ON atom.* TO 'atom'@'localhost' IDENTIFIED BY '12345';" |
Edição das 21h39min de 25 de dezembro de 2019
- pagina do projeto
https://www.accesstomemory.org/pt-br/
IcaAtom em Ubuntu 18.04
Preparando ambiente
sudo apt-get update
sudo apt-get upgrade
sudo dpkg-reconfigure locales
sudo reboot
Adicionando repositórios extras
Certifique que tenha universe em sources.list
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list
sudo add-apt-repository ppa:openjdk-r/ppa
Setup
sudo apt install openjdk-11-jre-headless software-properties-common \
mysql-server-5.7 elasticsearch nginx php-memcache gearman-job-server \
imagemagick ghostscript poppler-utils ffmpeg php7.2-cli php7.2-curl php7.2-json \
php7.2-ldap php7.2-mysql php7.2-opcache php7.2-readline php7.2-xml php7.2-fpm \
php7.2-mbstring php7.2-xsl php7.2-zip php-apcu fop libsaxon-java
arquivos de configuração
wget pub.nkosi.org/icaatom/atom.nginx
wget pub.nkosi.org/icaatom/atom.phpfpm
wget pub.nkosi.org/icaatom/atom.mysql
wget pub.nkosi.org/icaatom/atom.conf.nginx
wget pub.nkosi.org/icaatom/atom-worker.service
wget pub.nkosi.org/icaatom/atom.jvm
sudo mv atom.nginx /etc/nginx/sites-available/atom
sudo mv atom.phpfpm /etc/php/7.2/fpm/pool.d/atom.conf
sudo mv atom.mysql /etc/mysql/conf.d/mysqld.cnf
sudo mv atom.conf.nginx /etc/nginx/nginx.conf
sudo mv atom-worker.service /usr/lib/systemd/system/
sudo mv atom.jvm /etc/elasticsearch/jvm.options
sudo ln -sf /etc/nginx/sites-available/atom /etc/nginx/sites-enabled/atom
sudo rm /etc/nginx/sites-enabled/default
sudo rm /etc/php/7.2/fpm/pool.d/www.conf
habilantando e reiniciando os serviços
sudo systemctl enable nginx
sudo systemctl enable php7.2-fpm
sudo systemctl enable elasticsearch
sudo systemctl enable atom-worker
sudo /etc/init.d/php7.2-fpm restart
sudo /etc/init.d/nginx restart
sudo /etc/init.d/mysql restart
sudo /etc/init.d/elasticsearch restart
sudo systemctl restart atom-worker
baixando e instalando
wget pub.nkosi.org/icaatom/atom-2.5.3.tar.gz
sudo mkdir /usr/share/nginx/atom
sudo tar xzf atom-2.5.3.tar.gz -C /usr/share/nginx/atom --strip 1
sudo chown -R www-data:www-data /usr/share/nginx/atom
sudo chmod o= /usr/share/nginx/atom
criando banco de dados
sudo mysql -h localhost -u root -p -e "CREATE DATABASE atom CHARACTER SET utf8 COLLATE utf8_unicode_ci;"
sudo mysql -h localhost -u root -p -e "GRANT ALL ON atom.* TO 'atom'@'localhost' IDENTIFIED BY '12345';"
Baseado em https://www.accesstomemory.org/pt-br/docs/2.5/admin-manual/installation/linux/ubuntu-bionic/
Outras referências
- https://www.accesstomemory.org/pt-br/docs/2.5/admin-manual/installation/asynchronous-jobs/#installation-asynchronous-jobs
- https://documentosarquivisticosdigitais.blogspot.com/2019/11/arquivistas-liberamos-nossa-vm-maquina.html
- https://github.com/AnthonyTailer/debian9-atom
- https://wiki.ica-atom.org/Minimum_requirements
- http://documentosarquivisticosdigitais.blogspot.com/2017/01/traducao-da-instalacao-do-atom-ica-atom.html
- https://www.facebook.com/IcaAtomBrasil/
- Instalação via vagrant - dev
- Exemplo para importação de csv
- requerimentos
- https://www.academia.edu/15694836/O_Arquivo_da_Igreja_Lusitana_comunh%C3%A3o_anglicana_notas_das_primeiras_experi%C3%AAncias_com_o_Ica-AtoM
- https://www.archivematica.org/download/Archivematica-DigitalPreservationWorkshop-UniversityOfVictoria-VanGarderen-10Nov2010.pdf
- http://documentosarquivisticosdigitais.blogspot.com/2017/01/traducao-da-instalacao-do-atom-ica-atom.html
- https://www.accesstomemory.org/en/docs/2.5/
- https://culturalhosting.com/web-hosting-services-cultural-institutions/hosting-ica-atom-atom2-access-memory