Ubuntu Determining What Process Is Bound To A Port

To see all process that bound to specific port, you can use this command on Terminal. netstat -lnp You can also filter the result with grep. netstat -lnp | grep filter_name Source : https://unix.stackexchange.com/questions/9252/determining-what-process-is-bound-to-a-port . . . selengkapnya>>

Postgresql Allow Connection Without Password

Find pg_hba.conf, if you can connect to db template1, you can use this command. psql -d template1 show hba_file; Command above will result /etc/postgresql/10/main/pg_hba.conf for default postgresql installation. Edit pg_hba.conf, search for # IPv4 local connections, insert this value : host    all            . . . selengkapnya>>

Install Odoo 8 In Ubuntu 18.04

Update Server sudo apt update sudo apt upgrade -y   Install PostgreSQL Server sudo apt install postgresql -y   Creating the PostgreSQL User sudo su - postgres -c "createuser -s user_name" 2> /dev/null || true   Install tool packages sudo apt install wget subversion git bzr bzrtools python-pip gdebi-core -y   Install python packages sudo apt install git python-pip. . . selengkapnya>>

Ubuntu PHP Rewrite Module Not Working

If your apache version is 2.4 then you have to edit apache configuration in /etc/apache2/apache2.conf. Find <Directory /var/www/> and change the block like this : <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> After that, restart apache. service apache2 reload source : https://askubuntu.com/questions/421233/enabling-htaccess-file-to-rewrite-path-not-working. . . selengkapnya>>

Default Odoo Icon List

Here are the default odoo icon list https://www.slideshare.net/TaiebKristou/odoo-icon-smart-buttons . . . selengkapnya>>

zuka.one
©2011