Openstack installation using devstack - liberty - openstack

I am getting error while installing the openstack-liberty using devstack in
"Ubuntu 14.04.5 LTS"
Installation log is in http://pastebin.com/ULhXbC8u
Trying to install the liberty version.
stack#jan27:/tmp$ git clone https://git.openstack.org/openstack-dev/devstack
stack#jan27:/tmp/devstack$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/stable/kilo
remotes/origin/stable/liberty
remotes/origin/stable/mitaka
remotes/origin/stable/newton
stack#jan27:/tmp/devstack$ git checkout stable/liberty
stack#jan27:/tmp/devstack$ git branch -a
master
* stable/liberty
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/stable/kilo
remotes/origin/stable/liberty
remotes/origin/stable/mitaka
remotes/origin/stable/newton
Thanks & Regards,
Binoy M V

try upgrade pip use pip install --upgrade pip

If anyone else encounter the same problem. Resolve it by :
Change the pip value to the latest version, in ~/devstack/tools/cap-pip.txt
Example of cap-pip.txt content : pip==18

Related

How to uninstall .NET Core 2.1.4 from CentOS?

I installed .NET Core 2.1.4 on my CentOS from Microsoft .NET Core Installation Site. I want to uninstall it. I could not find any steps online. Please help.
Just reverse all the steps you followed from the Microsoft .NET Core Installation Site:
sudo yum remove dotnet-sdk-2.1.103
sudo yum remove libunwind libicu
If you also want to remove the rpm repository:
sudo yum remove /etc/yum.repos.d/dotnetdev.repo
To remove the imported gpg-key do the following:
Get a list of imported keys
rpm -qa gpg-pubkey \* --qf "%{version}-%{release} %{summary}\n"
There are a lot of entries, look for Microsoft (Release signing), copy the key and then issue the following command (paste the key after gpg-pubkey-):
sudo rpm -e --allmatches gpg-pubkey-xxxxxxxx-xxxxxxxx

Centos6 PHP7 Install SPL_Types

I am running CentOS 6 and am trying to install the SPL_Types extension for PHP7. I have php7 up and running however, any time I do pecl install SPL_Types,
I get massive compiler errors and can't find a way around. Ubuntu users can fix the issue by installing libpcre3-dev, but this is not a valid package on CentOS 6. I have verified that pcre and pcre-devel are installed and the latest version. Does anyone have a solution to this?
EDIT 1: A full log when I run the sudo pecl install SPL_Types command: http://pastebin.com/QG3mFjaf
I got it figured out. For those who wish to know, I had to use a third party source to compile and install the extension, then I had to edit my php.ini file manually to add the new module.
https://github.com/esminis/php_pecl_spl_types
then once you have it, run the commands:
phpize --clean
phpize
chmod +x configure
./configure --prefix=/usr
make install
Then, edit your php.ini file and under the dynamic modules section, add
extension=spl_types.so
Restart the httpd service by doing
sudo service httpd restart
Then verify the new module is loaded with phpinfo().

devstack install openstack-mitaka (ubuntu14.04)

Attempting to install DevStack on ubuntu14.04. I updated everything on ubuntu prior to installing DevStack. After ./stack.sh,I'm getting this error but all indications is that I have the Python components installed
what should I do ? It is a bug??
erro log as following:
Could try to clone stable/mitaka branch and install devstack.
Newton release is still under development so might be buggy with keystone db.
./unstack.sh
./clean.sh
remove devstack checkout and also repo's download into /opt/stack/
git clone git://github.com/openstack-dev/devstack.git –b stable/mitaka
cd devstack
./stack.sh ------>You can add local.conf before triggering this to automate installation process.

Report formatting not working in Odoo 8 Qweb Reports

All the default reports and the new reports that I am generating are being printed towards the left of the page. This only happens when the report is generated in PDF format. In HTML format the report is displayed fine. I did some research and found that downgrading the wkhtmltox to version 0.21.1 would solve this problem. I did that, but the problem still persists.
There is one small configuration
Go to settings --> Technical --> Parameters --> System Parameters -->
Click on Create and type
Done
You can try with completely un install and install again it again wkhtmlttopdf 0.12.X python library and try to print that report again..
I hope this should helpful for you ..:)
In Ubuntu 14.04, open the terminal and type:
sudo add-apt-repository ppa:ecometrica/servers
sudo apt-get update
sudo apt-get install wkhtmltopdf
In Ubuntu 12.04, open the terminal and type:
sudo add-apt-repository ppa:pov/wkhtmltopdf
sudo apt-get update
sudo apt-get install wkhtmltopdf
If That Was Not Working Then Following This Step
1) Download wkhtmltopdf version from wkhtmltopdf.org depend on your system arch (32 or 64 bit)
wget http://downloads.sourceforge.net/project/wkhtmltopdf/0.12.1/wkhtmltox-0.12.1_linux-trusty-amd64.deb
2) Install the package using commnad :
sudo dpkg -i wkhtmltox-0.12.1_linux-trusty-amd64.deb
3) Copy binary or wkhtmltopdf to /usr/bin location from ./usr/local/bin use command
sudo cp /usr/local/bin/wkhtmltopdf /usr/bin/
4) Restart Odoo server and try once again.

How to get Devstack Juno

I setup Devstack using this link: http://docs.openstack.org/developer/d... . but I got openstack old version. I want Openstack Juno version in devstack. what to do?
I found this:
git clone https://github.com/openstack-dev/devstack.git -b stable/juno
While using Devstack, when you clone the repo from Git it will pull the latest version of Openstack only, that is the beauty of Devstack.
git clone https://github.com/openstack-dev/devstack.git
We can either specify the version when cloning the repo
git clone https://github.com/openstack-dev/devstack.git -b stable/juno
Try this blog post
http://blog.phymata.com/2014/04/18/devstack-icehouse-on-the-rackspace-cloud/
But replace the word icehouse with juno everywhere.

Resources