Wallabag - Installation (Linux)
Version vom 16. April 2017, 10:02 Uhr von Martin Kirner (Diskussion | Beiträge)
Installation
mysql -u root -p mysql> create database wallabag; mysql> create user 'wallabag'@'%' identified by '<password>'; mysql> grant all on wallabag.* to 'wallabag'@'%'; mysql> create user 'wallabag'@'localhost' identified by '<password>'; mysql> grant all on wallabag.* to 'wallabag'@'localhost'; mysql> flush privileges; mysql> quit
sudo apt-get install php5-json php5-gd php5-tidy php5-curl php5-xmlrpc php5-mysql php5-readline php5-cli
cd ~/downloads git clone https://github.com/wallabag/wallabag.git cd wallabag && make install
Some parameters are missing. Please provide them. tabase_driver (pdo_sqlite): pdo_mysql database_host (127.0.0.1): localhost database_port (null): 3306 database_name (symfony): wallabag database_user (root): wallabag database_password (null): <password> database_path ('%kernel.root_dir%/../data/db/wallabag.sqlite'): database_table_prefix (wallabag_): wallabag_ database_socket (null): database_charset (utf8): mailer_transport (smtp): smtp mailer_host (127.0.0.1): mail.kirner.or.at mailer_user (null): admin mailer_password (null): <password> locale (en): de secret (ovmpmAWXRCabNlMgzlzFXDYmCFfzGv): <secret value> twofactor_auth (true): false twofactor_sender (no-reply@wallabag.org): no-reply@kirner.or.at fosuser_registration (true): false fosuser_confirmation (true): false from_email (no-reply@wallabag.org): no-reply@kirner.or.at rss_limit (50): rabbitmq_host (localhost): rabbitmq_port (5672): rabbitmq_user (guest): rabbitmq_password (guest): rabbitmq_prefetch_count (10): redis_scheme (tcp): redis_host (localhost): redis_port (6379): redis_path (null): redis_password (null): sites_credentials ({ }):
It appears that your database already exists. Would you like to reset it? (y/N)N
cd /var/www/ sudo mv ~/downloads/wallabag/ . sudo chown -R www-data:www-data wallabag
Links
https://got-tty.org/installation-von-wallabag-auf-debian-jessie
https://www.linuxbabe.com/ubuntu/install-wallabag-ubuntu-16-04
Zurück zu Ubuntu